| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-16 | Fixed #14007 -- Added model discovery in models module without the need to ↵ | Tim Graham | |
| specify app_label. Thanks mark@ and Aramgutang for work on the patch. | |||
| 2013-07-14 | Fixed #20746 -- Removed Python 2.6 specific code/docs | Tim Graham | |
| 2013-07-13 | Fixed #20681 -- Prevented teardown_databases from attempting to tear down ↵ | Tim Graham | |
| aliases Thanks simonpercivall. | |||
| 2013-07-13 | Fixed a deprecation warning in a selenium test. | Tim Graham | |
| 2013-07-13 | Isolated host validation tests in own test case | Claude Paroz | |
| 2013-07-12 | Fixed #20740 -- GenericIPAddressField should pass protocol to formfield() | Tim Graham | |
| Thanks Jeff250. | |||
| 2013-07-12 | Fixed #20429 -- Added QuerySet.update_or_create | Karol Sikora | |
| Thanks tunixman for the suggestion and Loic Bistuer for the review. | |||
| 2013-07-12 | Fixed #19031 -- Added a warning when using override_settings with 'DATABASES' | Joeri Bekker | |
| 2013-07-11 | Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backend | Claude Paroz | |
| Thanks dj.facebook at gmail.com for the report and initial patch and Areski Belaid and senko for improvements. | |||
| 2013-07-11 | Fixed #13721 -- Added UploadedFile.content_type_extra. | Benjamin Kagia | |
| Thanks Waldemar Kornewald and mvschaik for work on the patch. | |||
| 2013-07-10 | Fixed #19196 -- Added test/requirements | Tim Graham | |
| 2013-07-09 | Fixed #20663 -- "Today" and "now" admin shortcuts. | Loic Bistuer | |
| Changed the shortcuts next to date and time intput widgets to account for the current timezone. Refs #7717, #14253 and #18768. | |||
| 2013-07-09 | Fixed #20724 -- Test failure on SQLite. | Aymeric Augustin | |
| This test failure happened if the connection's NAME was set to a file system path, and its TEST_NAME wasn't. Thanks Claude for the report. | |||
| 2013-07-09 | Avoided transaction.set_autocommit in tests. | Aymeric Augustin | |
| It doesn't work as one might expect on a certain database backend where autocommits_when_autocommit_is_off = True. That backend happens to be popular for running tests. | |||
| 2013-07-09 | Only import gis test apps for geo-enabled DBs | Claude Paroz | |
| 2013-07-09 | Trusted test skipping about gis tests running or not | Claude Paroz | |
| With the new test discovery system, gis tests are discovered as other tests. They should be properly skipped now when dependencies are missing. So let's stop special casing their inclusion. | |||
| 2013-07-08 | Fixed #6785 -- Made QuerySet.get() fetch a limited number of rows. | Tim Graham | |
| Thanks Patryk Zawadzki. | |||
| 2013-07-08 | Fixed #13813 -- Comparison of DatabaseWrappers doesn't raise errors. | Alex Gaynor | |
| Patch from Lukasz Balcerzak. | |||
| 2013-07-04 | Fixed #19940 -- Made test.runner.setup_databases properly handle aliases for ↵ | Tim Graham | |
| default db. Thanks simonpercivall. | |||
| 2013-07-02 | Make get_constraints return columns in order | Andrew Godwin | |
| 2013-07-02 | Add AlterIndexTogether operation | Andrew Godwin | |
| 2013-07-02 | Fix index_together test | Andrew Godwin | |
| 2013-07-02 | Fix some bad test running under PostgreSQL | Andrew Godwin | |
| 2013-07-02 | Support for index_together in schema backends | Andrew Godwin | |
| 2013-07-02 | Autodetection of unique_together changes | Andrew Godwin | |
| 2013-07-02 | Add unique_together altering operation | Andrew Godwin | |
| 2013-07-02 | Fix M2M interaction with transactions | Andrew Godwin | |
| 2013-07-02 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| 2013-07-01 | Fixed a few more imports of django.utils.unittest. | Aymeric Augustin | |
| One import per line please! Refs #20680. | |||
| 2013-07-01 | Removed tests for django.utils.unittest vs. unittest. | Aymeric Augustin | |
| Silenced warnings caused by the deprecation of django.utils.unittest. Thanks Preston Timmons and Carl Meyer for their advice. Fixed #20680. | |||
| 2013-07-01 | Fixed a couple form/formset deprecation warnings in tests. | Tim Graham | |
| 2013-07-01 | Updated tests for deprecation of Option.get_(add|change|delete)_permission. | Tim Graham | |
| refs #20642. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-06-30 | Stopped calling loaddata with commit=False. | Aymeric Augustin | |
| This was a stealth option only used by the tests, and it isn't useful any more since `atomic` provides nested transactions. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-29 | Removed compatibility code for streaming responses. | Aymeric Augustin | |
| This code provided a deprecation path for old-style streaming responses. Refs #6527, #7581. | |||
| 2013-06-29 | Fixed #18592 -- Prevented crash when accessing MySQL _last_executed | Claude Paroz | |
| Thanks reames at asymmetricventures.com for the report. | |||
| 2013-06-29 | Do not allow FileSystemStorage.delete to receive an empty name | Claude Paroz | |
| Refs #20660. | |||
| 2013-06-29 | Fixed #20660 -- Do not try to delete an unset FieldFile | Claude Paroz | |
| Thanks stanislas.guerra at gmail.com for the report and Baptiste Mispelon for the review. | |||
| 2013-06-29 | More import removals | Claude Paroz | |
| Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups. | |||
| 2013-06-28 | Removed insert(), value_for_insert() SortedDict methods deprecated in Django ↵ | Ramiro Morales | |
| 1.5. | |||
| 2013-06-28 | Removed 'depth' .select_related() argument as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed custom profile model functionality as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed warnings level handling code as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/__init__.py django/db/models/fields/related.py tests/field_deconstruction/tests.py | |||
| 2013-06-28 | Ported over Field.deconstruct() from my schema alteration branch. | Andrew Godwin | |
| This is to help other ongoing branches which would benefit from this functionality. | |||
| 2013-06-28 | Support 'pyformat' style parameters in raw queries, Refs #10070 | Shai Berger | |
| Add support for Oracle, fix an issue with the repr of RawQuerySet, add tests and documentations. Also added a 'supports_paramstyle_pyformat' database feature, True by default, False for SQLite. Thanks Donald Stufft for review of documentation. | |||
| 2013-06-27 | Prevented running some admin_view tests twice. | Tim Graham | |
| 2013-06-27 | Fixed #20664 -- Fixed a bug with raw_id_fields on Python 3. | Tim Graham | |
| Thanks jefftriplett for the report. | |||
| 2013-06-27 | Fixed #20571 -- Added an API to control connection.needs_rollback. | Aymeric Augustin | |
| This is useful: - to force a rollback on the exit of an atomic block without having to raise and catch an exception; - to prevent a rollback after handling an exception manually. | |||
