| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-10-31 | Fixed #27400 -- Documented {% static %} encoding change in 1.10. | Henry Dang | |
| 2016-10-31 | Updated docs/topics/db/queries.txt examples to use print() function. | Timothy Allen | |
| 2016-10-31 | Fixed #27148 -- Fixed ModelMultipleChoiceField crash with invalid UUID. | Tim Graham | |
| 2016-10-31 | Fixed #27410 -- Clarified when static files is enabled in STATIC_ROOT docs. | Tim Graham | |
| 2016-10-31 | Updated Oracle docs links to Oracle 12c. | Mariusz Felisiak | |
| 2016-10-31 | Fixed #27063 -- Prevented i18n_patterns() from using too much of the URL as ↵ | Krzysztof Urbaniak | |
| the language. | |||
| 2016-10-31 | Added additional tests for translation's get_language_from_path(). | Krzysztof Urbaniak | |
| 2016-10-31 | Updated by bio. | Anssi Kääriäinen | |
| 2016-10-29 | Captured logging output during NonDjangoTemplatesDebugViewTests.test_400(). | Jon Dufresne | |
| 2016-10-29 | Fixed #27382 -- Doc'd that ugettext_lazy() should be converted to text for ↵ | medmunds | |
| non-Django code. | |||
| 2016-10-28 | Fixed #27188 -- Allowed using unique=True with FileField. | Michael Scott | |
| Thanks Tim Graham for the initial patch. | |||
| 2016-10-28 | Added require_ready argument to get_model methods. | Aymeric Augustin | |
| This allows bringing back the behavior of Django < 1.7. Also fixed the check for the app registry being ready in AppConfig.get_model(s), which was inconsistent with the equivalent check in Apps.get_model(s). That part is a backwards-incompatible change. | |||
| 2016-10-28 | Simplified AppConfig.import_models(). | Aymeric Augustin | |
| Since AppConfig now has a reference to its parent Apps registry, it can look up the models there instead of receiving them in argument. | |||
| 2016-10-28 | Modified readiness check in AppConfig.get_model(s). | Aymeric Augustin | |
| It was inconsistent with the equivalent check in Apps.get_model(s) because I made incorrect assumptions when I wrote that code and needlessly complicated readiness checks. This is a backwards-incompatible change. | |||
| 2016-10-28 | Simplified some auth_tests with assertRedirects(). | Tim Graham | |
| 2016-10-28 | Fixed #26578 -- Prohibited non-ASCII digits in validate_ipv4_address. | wim glenn | |
| 2016-10-28 | Fixed #20939 -- Simplified query generation by converting QuerySet to Query. | Tim Graham | |
| Thanks Anssi Kääriäinen for the initial patch and Anssi, Simon Charette, and Josh Smeaton for review. | |||
| 2016-10-28 | Added pytz to test requirements | Markus Holtermann | |
| This allows running tests w/o installing Django itself by only pointing the Python path. | |||
| 2016-10-27 | Corrected TooManyFieldsSent doctring for GET requests. | Zach Wernberg | |
| 2016-10-27 | Fixed #27373 -- Corrected 404 debug page message for an empty request path. | Mariusz Felisiak | |
| 2016-10-27 | Documented that cache keys are strings rather than bytes. | Adam Chainz | |
| 2016-10-27 | Described PostgreSQL as more scalable than SQLite. | mark-summerfield | |
| 2016-10-27 | Fixed #27327 -- Simplified time zone handling by requiring pytz. | Tim Graham | |
| 2016-10-27 | Updated "running the tests" to use 'pip install -e'. | Tim Graham | |
| 2016-10-26 | Fixed #27299 -- Documented the Widget.use_required_attribute() method. | Jon Dufresne | |
| Thanks Tim Graham for the review and edits. | |||
| 2016-10-26 | Fixed #27334 -- Allowed FileField to move rather than copy a file. | Adam Chidlow | |
| When a FileField is set to an instance of File that is not also an instance of FieldFile, pre_save() passes that object as the contents to Storage.save(). This allows the file to be moved rather than copied to the upload destination. | |||
| 2016-10-26 | Clarified when the post_migrate signal is sent during migrate. | Thomas Güttler | |
| 2016-10-25 | Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations." | Jon Dufresne | |
| This reverts commit 1ec1633cb294d8ce2a65ece6b56c258483596fba as it doesn't handle ContentType's auth.Permission dependency. Thus, it doesn't allow auth without migrations. | |||
| 2016-10-25 | Fixed #27385 -- Fixed QuerySet.bulk_create() on PostgreSQL when the number ↵ | David Barragán Merino | |
| of objects is a multiple plus one of batch_size. | |||
| 2016-10-25 | Replaced Outputting PDF's "Further Resources" with a link to Django Packages. | Tim Graham | |
| 2016-10-25 | Updated postgresql.org links to https and made them canonical. | Marti Raudsepp | |
| 2016-10-24 | Fixed #26357 -- Allowed admin popups to work on links added after page load. | Julian Andrews | |
| 2016-10-24 | Documented how to request CVE IDs. | Tim Graham | |
| 2016-10-24 | Removed unused loop in Query.change_aliases(). | Tim Graham | |
| Unknown if it was ever used. | |||
| 2016-10-24 | Added MySQLOperations.geom_func_prefix to simplify. | Sergey Fedoseev | |
| 2016-10-22 | Fixed #27374 -- Made JavaScriptCatalog respect the packages argument. | Alvin Lindstam | |
| 2016-10-21 | Fixed #27368 -- Modifed BaseEmailBackend.__enter__() to close the connection ↵ | Jon Dufresne | |
| if an exception occurs. Fixes unclosed socket ResourceWarning in mail test. Thanks Claude Paroz for the review. | |||
| 2016-10-20 | Optimized file copy in TemplateCommand | Claude Paroz | |
| 2016-10-20 | Removed note about obsolete Python version | Claude Paroz | |
| 2016-10-19 | Fixed #27361 -- Used "from django import forms" in forms api docs. | Zach Borboa | |
| 2016-10-18 | Fixed #27352 -- Doc'd social media fingerprinting consideration with login's ↵ | Markus Holtermann | |
| redirect_authenticated_user. | |||
| 2016-10-17 | Fixed #27344 -- Made ConditionalGetMiddleware only process GET requests. | Kevin Christopher Henry | |
| 2016-10-17 | Fixed ModelAdmin.get_max_num() example if obj is None. | Riccardo Magliocchetti | |
| 2016-10-17 | Refs #20888 -- Fixed index ordering introspection on PostgreSQL 9.6. | François Freitag | |
| 2016-10-15 | Removed unused branch in ModelIterable.__iter__(). | Tim Graham | |
| Unknown if it was ever used. | |||
| 2016-10-15 | Removed unused 'field' argument to DeleteQuery.delete_batch(). | Tim Graham | |
| Unused since a170c3f755351beb35f8166ec3c7e9d524d9602d. | |||
| 2016-10-15 | Updated security policy according to current practices. | Tim Graham | |
| Also added security release date notifications to django-announce. | |||
| 2016-10-14 | Removed DatabaseFeatures.can_combine_inserts_with_and_without_auto_increment_pk. | Tim Graham | |
| Unused (always False) after 29132ebdef0e0b9c09e456b05f0e6a22f1106a4f. | |||
| 2016-10-14 | Removed unused QuerySet.value_annotation attribute. | Tim Graham | |
| Unused since 5008a4db440c8f7d108a6979b959025ffb5789ba. | |||
| 2016-10-14 | Fixed #27324 -- Simplified DatabaseIntrospection.get_constraints() on Oracle. | Mariusz Felisiak | |
