summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-28[1.7.x] Bump version number for 1.7 beta 3 bugfix release.1.7b3James Bennett
2014-04-28[1.7.x] Fixed #22254 -- Noted the requirement of calling django.setup() when ↵Tim Graham
running Thanks Peter Landry for the report. Backport of 26b03f2526 from master
2014-04-28[1.7.x] Fix a typo in logging.txtZhaorong Ma
Backport of dd3f3e4e89 from master
2014-04-28[1.7.x] Fixed #22497 -- Highlighted difference between field and class ↵Tim Graham
deconstruction. Thanks nliberg for the suggestion. Backport of b829d53b37 from master
2014-04-27[1.7.x] Fixed #22445 -- Added how to perform a reverse data migration to ↵Tim Graham
topic guide. Thanks Karen Tracey for the report. Backport of 1ce759b69f from master
2014-04-27[1.7.x] Improved formatting and links of migration docs.Tim Graham
Backport of ab8d8e00c9 from master
2014-04-27[1.7.x] Fixed #22526 -- Added note about check() method to 1.7 release notes.Tim Graham
Thanks kevin-brown for the report. Backport of 8905fcbda6 from master
2014-04-26[1.7.x] Documented django.setup().Aymeric Augustin
Thanks Eric Holscher and Tim Graham for the review. Backport of 58ed387 from master
2014-04-26[1.7.x] Fix many many typos in comments throughout the codebaseAlex Gaynor
Backport of 2bcb8bfc8d from master
2014-04-26[1.7.x] Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
Avoided introducing a new regex-based SQL splitter in the migrations framework, before we're bound by backwards compatibility. Adapted this change to the legacy "initial SQL data" feature, even though it's already deprecated, in order to facilitate the transition to migrations. sqlparse becomes mandatory for RunSQL on some databases (all but PostgreSQL). There's no API to provide a single statement and tell Django not to attempt splitting. Since we have a more robust splitting implementation, that seems like a good tradeoff. It's easier to add a new keyword argument later if necessary than to remove one. Many people contributed to both tickets, thank you all, and especially Claude for the review. Refs #22401. Backport of 8b5b199 from master
2014-04-26[1.7.x] Specified 'csv and unicode' note as Python 2 onlyClaude Paroz
Backport of 2128b3a6 from master.
2014-04-26[1.7.x] Updated doc links to point to Python 3 documentationClaude Paroz
Backport of 680a0f08b from master.
2014-04-25[1.7.x] Fixed #22507 -- Clarified nature of the sender argument of signalsClaude Paroz
Backport of d1f93e9c1e from master.
2014-04-25[1.7.x] Fixed #21166 -- Reset errors_occurred flag after commit and rollback.Aymeric Augustin
Backport of 3033a71 from master. Conflicts: django/db/backends/__init__.py
2014-04-25[1.7.x] Fixed a confusing heading in applications docs.Aymeric Augustin
Refs #22422. Backport of 0315f01 from master
2014-04-25[1.7.x] Fixed #22504 -- Corrected domain terminology in security guide.Tim Graham
Thanks chris at chrullrich.net. Backport of f65eb15ac6 from master
2014-04-25[1.7.x] Fixed #22422 -- Moved information about the application loading ↵Víðir Valberg Guðmundsson
process to refs/applications.txt. Backport of deb561bbe2 from master
2014-04-25[1.7.x] Fixed #22493 - Added warnings to raw() and extra() docs about SQL ↵Moayad Mardini
injection Thanks Erik Romijn for the suggestion. Backport of 3776926cfe from master
2014-04-25[1.7.x] Fixed #22516 -- Added versionchanged annotation for STATIC_ROOT ↵Malcolm Box
default value.
2014-04-25[1.7.x] Fixed #22515 -- Fixed the object_id of the LogEntry that's created ↵Tim Graham
after a user password change in the admin. Thanks ross at servercode.co.uk for the report. Backport of 9e7f86b890 from master
2014-04-25[1.7.x] Set some transaction-related feature flags on SQLite.Aymeric Augustin
Refs #22496. Backport of e368912 from master.
2014-04-25[1.7.x] Fixed #22498 -- constraint name was not quoted in FK creation SQLShai Berger
Backport of 843613add4 from master
2014-04-25[1.7.x] Made sure cursor.close() does not complain if cursor is already ↵Shai Berger
closed on Oracle Refs #22483 Backport of 53d97e4fe3 from master
2014-04-24[1.7.x] Fixed #22499 -- Fixed a typo in an admin_views test that caused ↵Tim Graham
failure on Oracle. Backport of d238c58912 from master
2014-04-24[1.7.x] Renamed Transifex project from django-core to djangoClaude Paroz
See also http://blog.transifex.com/post/83622601443/new-teams-management-transifex Backport of 7c24027ba from master.
2014-04-24[1.7.x] Ignored repeated calls to connection.close().Aymeric Augustin
Backport of d4cc59ef from master
2014-04-24[1.7.x] Prevented a crash in the cursor wrappers on Oracle.Aymeric Augustin
Fixed #22483 (again). Backport of 0f85103e from master
2014-04-23[1.7.x] Used the same instance of atomic for entry and exit.Aymeric Augustin
Since all state is maintained on the connection at this time and none in the atomic, it doesn't matter, but it could introduce some subtle bugs if the implementation changed in the future. Backport of 0aa4c6c3 from master
2014-04-23[1.7.x] Wrapped migrations in a transaction only on DBs with transactional DDL.Aymeric Augustin
Backport of e74d2183 from master
2014-04-23[1.7.x] Set compile messages options as class variableClaude Paroz
Refs #18714. Same logic as options for makemessages commands. Backport of 3a435a057 from master.
2014-04-23[1.7.x] Fixed #22495 -- Locmem cache.add() failed with infinite timeoutsMalcolm Box
cache.add() incorrectly succeeded when there was an existing key with an infinite (None) timeout. Backport of af5f688392 from master.
2014-04-23[1.7.x] Fixed #22486 -- Restored the ability to reverse views created using ↵Tim Graham
functools.partial. Regression in 8b93b31487d6d3b0fcbbd0498991ea0db9088054. Thanks rcoup for the report. Backport of 3c06b2f2a3 from master
2014-04-23[1.7.x] Added Spatialite support to the new migration frameworkClaude Paroz
Refs #22451. Backport of 2ffa6ca73a from master.
2014-04-23[1.7.x] Used migration framework in GIS test tearDownClaude Paroz
Backport of 48c4ea414 from master.
2014-04-22[1.7.x] Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. Backport of 11d453bcad from master
2014-04-22[1.7.x] Updated grammar in description of django.contrib.auth.Ray Ashman
Backport of 9853779805 from master
2014-04-22[1.7.x] Fixed table cleanup in GIS migration testsClaude Paroz
Backport of ab90c4707b from master.
2014-04-22[1.7.x] Fixed removal of GIS column in PostGIS 1.x migrationClaude Paroz
Refs #22481. Backport of 2f9d1576e from master, squashed with 2f9d1576e8.
2014-04-22[1.7.x] Fixed adding new GIS column in PostGIS 1.x migrationClaude Paroz
Refs #22451. Backport of fb09a489c from master.
2014-04-22[1.7.x] Fixed #22478 -- Regression in test label discovery.Preston Timmons
As part of the app-loading updates the old test runner was changed to not require a models module. This introduced a regression in behavior so applabel.TestCase failed for tests defined in a directory. The fix is thanks to yakky and rtnpro.
2014-04-22[1.7.x] Added 1.6.4 release note stub.Tim Graham
Backport of 9fb95dfc9f from master
2014-04-22[1.7.x] Fixed #22426 -- Added support old-style d.c.messages format.Florian Apolloner
Forward ported code from 1.5 that adds backwards compatibility with legacy message length. See commit 9e7183073f64e541587e8dcfd8bb3ddeb47f8162 for details. Thanks to Ofir Ovadia for the initial patch. Backport of f286721f7fdc2202f77a5f4d650d9d0779b86811 from master.
2014-04-21[1.7.x] Update for 1.7b2 security release.1.7b2James Bennett
2014-04-21[1.7.x] Added information on resolved security issues to release notes.Erik Romijn
Backport of c07f3e60c2d455e36ba4ac339d4283d32bbc3814 from master
2014-04-21[1.7.x] Fixed queries that may return unexpected results on MySQL due to ↵Erik Romijn
typecasting. This is a security fix. Disclosure will follow shortly. Backport of 75c0d4ea3ae48970f788c482ee0bd6b29a7f1307 from master
2014-04-21[1.7.x] Prevented leaking the CSRF token through caching.Aymeric Augustin
This is a security fix. Disclosure will follow shortly. Backport of c083e3815aec23b99833da710eea574e6f2e8566 from master
2014-04-21[1.7.x] Fixed a remote code execution vulnerabilty in URL reversing.Tim Graham
Thanks Benjamin Bach for the report and initial patch. This is a security fix; disclosure to follow shortly. Backport of 8b93b31487d6d3b0fcbbd0498991ea0db9088054 from master
2014-04-21[1.7.x] Corrected the section identifier for MySQL unicode reference.Matt Lauber
Backport of b2514c02e1 from master
2014-04-21[1.7.x] Fixed monkeypatching in a staticfiles test.Florian Apolloner
Backport of a4553e0510 from master
2014-04-21[1.7.x] Appeased flake8 2.1.0.Aymeric Augustin
Backport of 428c0bbe1bcd303560d7e96d7d2721ff3fdc0e3f from master