summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2015-08-07Fixed #25231 -- Added recording of squashed migrations in the migrate command.mlavin
Ensured squashed migrations are recorded as applied when the migrate command is run and all of the original migrations have been previously applied.
2015-08-07Fixed #25233 -- Fixed HStoreField.has_changed() handling of initial values.Tim Graham
Thanks Simon Charette for review.
2015-08-07Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede
2015-08-07Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ↵Tim Graham
form with UUIDField pk.
2015-08-06Refs #14476 -- Added a test for default annotation name access in aggregate.Tim Graham
Fixed in f59fd15c4928caf3dfcbd50f6ab47be409a43b01
2015-08-05Fixed #25226 -- Set the model attribute on ArrayField's base_fieldIon Scerbatiuc
2015-08-05Fixed #22404 -- Added a view that exposes i18n catalog as a JSONSergey Kolosov
Added django.views.i18n.json_catalog() view, which returns a JSON response containing translations, formats, and a plural expression for the specified language.
2015-08-04Fixed #25211 -- Added HttpRequest.get_port() and USE_X_FORWARDED_PORT setting.Matt Robenolt
2015-08-04Fixed #25209 -- Removed parallel=True coverage optionPeter Schmidt
2015-08-04Fixed #25191 -- Added string diff to SimpleTestCase.assertXMLEqual() message.Caio Ariede
2015-08-04Fixed #25215 -- Solved reference to forms.HStoreField in declaration of ↵Curtis Maloney
HStoreField Correct test which was using the model field in a test form.
2015-08-03Removed unused Field.get_flatchoices() method.Tim Graham
Unused since c2ba59fc1da5287d6286e2c2aca4083d5bafe056 (Django 1.0). Thanks Andy Baker for the report.
2015-08-03Fixed #25206 -- Fixed error message when checking a ModelAdmin fieldset's ↵Alasdair Nicol
fields.
2015-08-03Added test for ForeignObject.get_extra_descriptor_filter()Alex Hill
2015-08-02Fixed flake8 warning.Tim Graham
2015-08-01Fixed #25089 -- Added password validation to createsuperuser/changepassword.Alex Becker
2015-08-01Fixed #25146 -- Allowed method_decorator() to decorate classes.Rigel Di Scala
2015-08-01Fixed #25204 -- Added missing space in runserver logging.Tim Graham
2015-08-01Refs #25176 -- Fixed typo in tests/test_utils/tests.pyTim Graham
2015-08-01Fixed #25176 -- Prevented TestCase.setUpTestData() exception from leaking ↵Adam Chainz
transaction.
2015-07-31Removed usage of selenium's deprecated switch_to_window() method.Tim Graham
2015-07-31Fixed #24720 -- Avoided resolving URLs that don't end in a slash twice in ↵Jay Cox
CommonMiddleware. This speeds up affected requests by about 5%.
2015-07-31Refs #25184 -- Started deprecation for contrib.gis.geoip.Flavio Curella
2015-07-31Fixed #25184 -- Added support for MaxMind GeoLite2 database formatFlavio Curella
2015-07-31Fixed #25188 -- Improved message raised by SimpleTestCase.assertRaisesMessage().Tim Graham
Thanks Chris Jerdonek for the suggestion and help with the patch.
2015-07-30Fixed #25183 -- Fixed non-deterministic GeoIP test.Tim Graham
google.com doesn't always resolve to an IP inside the United States.
2015-07-30Fixed #24444 -- Updated contrib.admin to use django-flat-themeelky
2015-07-30Fixed #25190 -- Deprecated callable_obj parameter to assertRaisesMessage().Tim Graham
Thanks Aymeric Augustin for review.
2015-07-29Fixed #25163 -- Added hint for non-staff users to admin login page.Luis Visintini
2015-07-29Fixed #25185 -- Added support for functools.partial serialization in migrationsPiper Merriam
2015-07-28Fixed #25186 -- Improved migration's serialization of builtins on Python 2.Piper Merriam
2015-07-28Refs #25183 -- Added debugging for non-deterministic GeoIP test.Tim Graham
2015-07-28Fixed #18556 -- Allowed RelatedManager.add() to execute 1 query where possible.Tim Graham
Thanks Loic Bistuer for review.
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-27Fixed #24127 -- Changed the default current_app to the current namespace.Marten Kenbeek
Changed the url template tag to use request.resolver_match.namespace as a default for the current_app argument if request.current_app is not set.
2015-07-27Fixed #25095 -- Fixed annotate() + values() group by bugMitchell Kotler
Thanks Josh Smeaton for help on the tests.
2015-07-27Fixed #25110 -- Fixed a test_runner test isolation regression.Joseph Gordon
Thanks claudep for the patch.
2015-07-25Fixed #24623 -- Fixed EmailMessage.attach_file() with text files on Python 3.Konrad Świat
Thanks tkrapp for the report and Tim Graham for the review.
2015-07-24Fixed #22258 -- Added progress status for dumpdata when outputting to fileClaude Paroz
Thanks Gwildor Sok for the report and Tim Graham for the review.
2015-07-23Fixed #12768 -- Fixed QuerySet.raw() regression on FK with custom db_column.Matt Johnson
2015-07-21Fixed #25129 -- Made model instance defaults work with migrations (refs #24919).Tim Graham
2015-07-21Refs #24919 -- Made test models serializable for migrations.Tim Graham
2015-07-21Corrected HTML-escaping behaviour of url template tag.Luke Plant
Due to the URL encoding applied by the tag for all parameters that might be partly controllable by an end-user, there are no XSS/security problems caused by this bug, only invalid HTML.
2015-07-20Fixed #25141 -- Diminished GDAL dependence during geojson serializationClaude Paroz
Only require GDAL if contained geometries need coordinate transformations. Thanks drepo for the report and Tim Graham for the review.
2015-07-20Fixed #25052; refs #16860 -- Added password validation to UserCreationForm.Tim Graham
2015-07-20Refs #16860 -- Moved password_changed() logic to AbstractBaseUser.Tim Graham
Thanks Carl Meyer for review.
2015-07-20Refs #23622 -- Added tests to ensure ordering is retained for distinct on ↵Anssi Kääriäinen
fields subqueries. The ticket was already fixed by b68212f539f206679580afbfd008e7d329c9cd31. Thanks to Beauhurst for commissioning the work on this ticket.
2015-07-20Fixed test with incorrect assumption about pk values.Anssi Kääriäinen
The test results were dependent on the order in which the tests were run.
2015-07-20Replaced six.BytesIO with io.BytesIOTim Graham