summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-31Refs #28161 -- Doc'd INSTALLED_APPS requirement for ArrayField(CIText).Robert Coup
2019-01-31Fixed #30147 -- Simplified directory creation with os.makedirs(..., ↵Jon Dufresne
exist_ok=True).
2019-01-31Corrected output of Prefetch.to_attr example.Sergey Fedoseev
2019-01-30Refs #29444 -- Renamed DatabaseFeatures.can_return_id* to be generic for ↵Johannes Hoppe
other columns.
2019-01-30Fixed #30076 -- Added Model.get_FOO_display() even if field's choices are empty.Joshua Cannon
2019-01-30Fixed #30091 -- Doc'd middleware ordering requirements with CSRF_USE_SESSIONS.Carlton Gibson
2019-01-30Fixed #30116 -- Dropped support for Python 3.5.Tim Graham
2019-01-30Fixed E117 and F405 flake8 warnings.Mariusz Felisiak
2019-01-29Fixed #30108 -- Allowed adding foreign key constraints in the same statement ↵Dan Tao
that adds a field.
2019-01-29Refs #30137 -- Fixed template test on Windows.Tim Graham
Broken in 7785e03ba89aafbd949191f126361fb9103cb980.
2019-01-29Fixed typo in docs/releases/2.2.txt.Daniel Hahler
2019-01-28Fixed #29973 -- Added compilemessages --ignore option.rsiemens
2019-01-28Refs #29973 -- Extracted helper functions from makemessages.rsiemens
2019-01-28Fixed #29825 -- Fixed JS ngettext if the string is a non-plural msgid in the ↵Claude Paroz
catalog.
2019-01-28Fixed #25624 -- Fixed autoreload crash with jinja2.ModuleLoader.Tom Forbes
2019-01-28Made test table cleanup in OperationTestBase more robust.Paveł Tyślacki
Some non-unique constraint names were added in b69f8eb04cc8762d3dfd5af5ea1fc58e3f2ebcc3 which resulted in failures depending on the order in which tests were run.
2019-01-28Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne
Used more specific errors (e.g. FileExistsError) as appropriate.
2019-01-28Refs #30055 -- Added a helpful error when SQLite is too old.Tim Graham
2019-01-28Refs #30033 -- Doc'd change regarding apps without migrations depending on ↵Tim Graham
apps with migrations. The addition of self.connection.check_constraints() in 7289874adceec46b5367ec3157cdd10c711253a0 is the cause.
2019-01-27Removed default mode='r' argument from calls to open().Jon Dufresne
2019-01-27Refs #23919 -- Replaced codecs.open() with open().Jon Dufresne
On Python 3, open() handles encodings.
2019-01-27Fixed typo in docs/ref/request-response.txt.Sergey Fursov
2019-01-26Added missing assert in ↵Jon Dufresne
FileBasedCacheTests.test_creates_cache_dir_if_nonexistent().
2019-01-25Fixed grammar in FakePayload exception message.Jon Dufresne
2019-01-23Completed test coverage for utils.text._replace_entity().Hasan Ramezani
2019-01-23Fixed #30123 -- Removed tuple support in DatabaseIntrospection.get_field_type().Nick Pope
Support for returning tuples was undocumented and error prone.
2019-01-23Refs #30123 -- Simplified introspection of geography columns on PostGIS.Nick Pope
2019-01-23Refs #30123 -- Changed second arg of ↵Nick Pope
DatabaseIntrospection.get_geometry_type() to the row description.
2019-01-23Refs #30111 -- Fixed test cleanup in postgres_tests/test_integration.py.Tim Graham
Fixed "ERROR: Step ‘Publish JUnit test result report’ failed: No test report files were found. Configuration error?" on Jenkins because report files were put in tests/postgres_tests.
2019-01-22Fixed #30115 -- Fixed SQLite introspection crash with a varchar primary key.Nick Pope
Removed obsolete max_length handling for CharField that caused the issue. Regression in a35d2a4510d5beec398b1007aaa26492d6aedf97.
2019-01-22Simplified DatabaseIntrospection.get_geometry_type() for PostGIS.Nick Pope
2019-01-22Inlined DatabaseIntrospection._table_info() for SQLite.Nick Pope
2019-01-22Fixed #30111 -- Fixed AppRegistryNotReady error with django.contrib.postgres ↵Nasir Hussain
in INSTALLED_APPS. Regression in e192223ed996ed30fe83787efdfa7f2be6b1a2ee.
2019-01-21Made assertOptimizesTo() more strict in migrations tests.Vytis Banaitis
A recursive deconstruction is needed because comparing deconstructed operations doesn't check field attributes. Fixed typo in failing test.
2019-01-21Fixed #30106 -- Made order_with_respect_to updates use QuerySet.bulk_update().Simon Charette
2019-01-21Tested Model.set_FOO_order() with an unrelated object.Tim Graham
2019-01-21Corrected GenericRelation's related_query_name manual lookup example.Pavel Savchenko
And changed related_query_name to a singular noun.
2019-01-21Fixed #30121 -- Fixed assertURLEqual() crash with reverse_lazy() URLs.Jon Dufresne
Regression in 24959e48d949a20be969f649ece3576dbc7ce422.
2019-01-21Fixed #30120 -- Fixed invalid SQL in distinct aggregate.Simon Charette
Regression in bc05547cd8c1dd511c6b6a6c873a1bc63417b111 (refs #28658).
2019-01-19Completed test coverage for utils.text.Truncator.chars().Hasan Ramezani
2019-01-19Removed redundant period in Watchman unavailable message.Tom Forbes
2019-01-19Fixed #30117 -- Fixed SchemaEditor.quote_value() test for mysqlclient 1.4.0+.Mariusz Felisiak
2019-01-18Removed template_cache attribute from cached template loader.Tom Forbes
Unused since 5d8da093a974f41e08573bbe0d32d5ffeaadd0ad.
2019-01-18Optimized Oracle PKs introspection by adding get_primary_key_column().Mariusz Felisiak
2019-01-18Fixed #30107 -- Removed unused dirs variable from cache template loader keys.Tim Graham
Unused since 5d8da093a974f41e08573bbe0d32d5ffeaadd0ad.
2019-01-17Refs #28606 -- Corrected deprecation version for CachedStaticFilesStorage.Tim Graham
2019-01-17Fixed typo in QuerySet.bulk_update documentation (#10859)Day Barr
Looks like an accidental carry over from the pre-existing QuerySet.bulk_create documentation.
2019-01-17Increased the default PBKDF2 iterations for Django 3.0.Tim Graham
2019-01-17Advanced deprecation warnings for Django 3.0.Tim Graham
2019-01-17Refs #28750 -- Removed suppport for model Meta.manager_inheritance_from_future.Tim Graham