| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-11 | Removed superfluous code now that connections use autocommit by default. | Aymeric Augustin | |
| 2013-03-11 | Enabled database-level autocommit for all backends. | Aymeric Augustin | |
| This is mostly a documentation change. It has the same backwards-incompatibility consequences as those described for PostgreSQL in a previous commit. | |||
| 2013-03-11 | Removed _enter/_leave_transaction_management. | Aymeric Augustin | |
| The goal is to make all databases share a common, autocommit-based, implementation. | |||
| 2013-03-11 | Added BaseDatabaseWrapper.ensure_connection. | Aymeric Augustin | |
| This API is useful because autocommit cannot be managed without an open connection. | |||
| 2013-03-11 | Expressed the dirty flag handling logic in terms of autocommit. | Aymeric Augustin | |
| 2013-03-11 | Stopped flipping the uses_savepoints feature at runtime. | Aymeric Augustin | |
| 2013-03-11 | Enabled autocommit for PostgreSQL. | Aymeric Augustin | |
| For users who didn't activate autocommit in their database options, this is backwards-incompatible in "non-managed" aka "auto" transaction state. This state now uses database-level autocommit instead of ORM-level autocommit. Also removed the uses_autocommit feature which lost its purpose. | |||
| 2013-03-11 | Separated autocommit and isolation level handling for PostgreSQL. | Aymeric Augustin | |
| Autocommit cannot be manipulated independently from an open connection. This commit introduces a minor change in behavior: entering transaction management forces opening a databasse connection. This shouldn't be backwards incompatible in any practical use case. | |||
| 2013-03-11 | Added an API to control database-level autocommit. | Aymeric Augustin | |
| 2013-03-11 | Made transaction.managed a no-op and deprecated it. | Aymeric Augustin | |
| enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management. | |||
| 2013-03-11 | Moved a warning in the 1.6 notes back to its expected location. | Aymeric Augustin | |
| 2013-03-10 | Fixed #20019 -- Ensured HttpRequest.resolver_match always exists. | Aymeric Augustin | |
| Obviously it isn't set until the URL is resolved. | |||
| 2013-03-10 | Made (make|compile)messages check for availability of gettext commands. | Ramiro Morales | |
| Refs #19584. | |||
| 2013-03-10 | Merge pull request #892 from JonLoy/ticket_20018 | Alex Gaynor | |
| Fixed #20018: Added backtick to fix reference | |||
| 2013-03-10 | Fixed #20018: Added backtick to fix reference | Jonathan Loy | |
| Fixed #20018 | |||
| 2013-03-10 | Fixed #20008 -- Removed trailing slash in Wikipedia link | Claude Paroz | |
| Thanks senden9 at gmail.com for the report. | |||
| 2013-03-09 | Fixed BinaryField support on Oracle. | Florian Apolloner | |
| 2013-03-09 | Fixed #19171 -- Allowed coordinate transforms with custom SRIDs | Claude Paroz | |
| Thanks reidpr at lanl.gov for the report. | |||
| 2013-03-09 | Fixed #9806 -- Allowed editing GeometryField with OpenLayersWidget | Claude Paroz | |
| Thanks Paul Winkler for the initial patch. | |||
| 2013-03-09 | Reformatted slightly openlayers.js | Claude Paroz | |
| 2013-03-09 | Fixed #19923 -- Display tracebacks for non-CommandError exceptions | Claude Paroz | |
| By default, show tracebacks for management command errors when the exception is not a CommandError. Thanks Jacob Radford for the report. | |||
| 2013-03-09 | Fixed #16594 -- Added wkt 3D support for GEOS geometries | Claude Paroz | |
| This requires GEOS >= 3.3.0 to function properly. On previous versions, the Z dimension will simply not appear in the wkt. Disabled OpenLayers editing for 3D geometries (unsupported). | |||
| 2013-03-08 | Replaced proj4 testing by a regex | Claude Paroz | |
| 2013-03-08 | Fixed a regression in forms changed_data | Claude Paroz | |
| Thanks Loic Bistuer for spotting the regression and the initial patch. Refs #16612. | |||
| 2013-03-08 | Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵ | Loic Bistuer | |
| return a QuerySet. | |||
| 2013-03-07 | Merge pull request #850 from bmispelon/ticket-19916 | Aymeric Augustin | |
| Fix 19916. Smarter tokenizing of contrib.comment's templatetags arguments | |||
| 2013-03-07 | Adde two "versionadded" markers, thanks to mYk for noticing. | Alex Gaynor | |
| 2013-03-07 | Added a ManyToManyField(db_constraint=False) option, this allows not ↵ | Alex Gaynor | |
| creating constraints on the intermediary models. | |||
| 2013-03-07 | Fix 19916. Smarter tokenizing of contrib.comment's templatetags arguments. | Baptiste Mispelon | |
| 2013-03-07 | Fixed #19997 -- Added custom EMPTY_VALUES to form fields | Claude Paroz | |
| Thanks Loic Bistuer for the report and the patch. | |||
| 2013-03-07 | Added missing method in the dummy database backend. | Aymeric Augustin | |
| 2013-03-06 | Fixed #19951 -- Admin: Invalid model PK values shouldn't cause 500 status. | Igor Támara | |
| Avoid ValueError in admin when passing a string as PK for an inherited model with an integer PK field. Thanks ikks for the patch. See also #11191. | |||
| 2013-03-06 | Merge pull request #882 from loic/testfix | Ramiro Morales | |
| Fixed minor warnings in tests. | |||
| 2013-03-06 | PEP8 cleanup of functional.py | Preston Holmes | |
| 2013-03-06 | Fixed #19543 -- implemented SimpleLazyObject.__repr__ | Preston Holmes | |
| Thanks to Florian Hahn for the patch | |||
| 2013-03-06 | Merge pull request #884 from manfre/patch-1 | Aymeric Augustin | |
| Fixed #19996 - Updated link to django-mssql project in docs. | |||
| 2013-03-06 | Update link to django-mssql project | Michael Manfre | |
| 2013-03-06 | One more EMPTY_VALUES replacement following 22be90dd17 | Claude Paroz | |
| Thanks Loic Bistuer for catching this omission. Refs #19989. | |||
| 2013-03-06 | Used more precise test assertions. | Aymeric Augustin | |
| 2013-03-06 | Fixed #19994 -- Typo. | Aymeric Augustin | |
| Thanks akshar for the report. | |||
| 2013-03-06 | Fixed #19989 -- Suppressed UnicodeWarning during BinaryField validation | Claude Paroz | |
| Thanks Aymeric Augustin for the report and Simon Charette for the review. | |||
| 2013-03-06 | Fixed minor warnings in tests. | Loic Bistuer | |
| 2013-03-04 | Fixed #6585 -- Admin relationship widgets: Respect ordering defined by ↵ | Juan Pedro Fisanotti | |
| target model's ModelAdmin. Thanks Gary Wilson for the report and Juan Pedro Fisanotti, Carlos Matías de la Torre for the fix. | |||
| 2013-03-04 | Fixed #19838 -- Admin: Don't leak a 500 HTTP status when trying to delete ↵ | Javier Mansilla | |
| protected FKs. Thanks rafadev for the report and Javier Mansilla for the fix. | |||
| 2013-03-04 | Fixed #19464 -- Eased customization of ClearableFileInput's link markup | Claude Paroz | |
| Thanks rubyruy for the report and the patch. | |||
| 2013-03-03 | Merge pull request #871 from matiasb/ticket_19945 | Ramiro Morales | |
| Fixed #19945 -- Fixed default User model Meta inheritance. | |||
| 2013-03-03 | Removed mentions of modeltests. | Ramiro Morales | |
| 2013-03-03 | Removed mentions of regressiontests. | Ramiro Morales | |
| 2013-03-03 | Release notes blurb for 804366327d728d23a9f7a25ff77a6eed3c9f9323. | Ramiro Morales | |
| 2013-03-03 | Fixed #19915 - Made blocktrans tag honor TEMPLATE_STRING_IF_INVALID. | matiasb | |
| Thanks Natalia Bidart for the report and Matías Bordese for the fix. | |||
