changelog.rst 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. Changelog
  2. ---------
  3. 1.4.5 (2017-08-22)
  4. ~~~~~~~~~~~~~~~~~~
  5. * Add Django 1.11 support
  6. 1.4.4 (2016-06-27)
  7. ~~~~~~~~~~~~~~~~~~
  8. * Add Django 1.10 support
  9. * Drop Django 1.4 - 1.7, and Python 2.6 support
  10. * Drop South support
  11. 1.4.3 (2015-12-28)
  12. ~~~~~~~~~~~~~~~~~~
  13. * Add Django 1.9 support
  14. * Support long options without equals signs, such as "--attr selected"
  15. * Support nose plugins using callback options
  16. * Support nose options without default values (jsatt)
  17. * Remove Django from install dependencies, to avoid accidental upgrades
  18. (jsocol, willkg)
  19. * Setting REUSE_DB to an empty value now disables REUSE_DB, instead of
  20. enabling it (wdoekes)
  21. 1.4.2 (2015-10-07)
  22. ~~~~~~~~~~~~~~~~~~
  23. * Warn against using REUSE_DB=1 and FastFixtureTestCase in docs
  24. * REUSE_DB=1 uses new transaction management in Django 1.7, 1.8 (scottsexton)
  25. * Try to avoid accidentally using production database with REUSE_DB=1 (alexjg, eroninjapan)
  26. * Supported Django versions limited to current supported Django version 1.4,
  27. 1.7, and 1.8, as well as relevant Python versions.
  28. 1.4.1 (2015-06-29)
  29. ~~~~~~~~~~~~~~~~~~
  30. * Fix version number (ezarowny)
  31. * Fix choice options, unbreaking nose-cover (aamirtharaj-rpx, jwhitlock)
  32. * Support 1.8 app loading system (dgladkov)
  33. * Support non-ASCII file names (singingwolfboy)
  34. * Better PEP8'd assertion names (roganov)
  35. 1.4 (2015-04-23)
  36. ~~~~~~~~~~~~~~~~
  37. * Django 1.8 support (timc3, adepue, jwhitlock)
  38. * Support --testrunner option (st4lk)
  39. * Fix REUSE_DB second run in py3k (edrmp)
  40. 1.3 (2014-12-05)
  41. ~~~~~~~~~~~~~~~~
  42. * Django 1.6 and 1.7 support (conrado, co3k, Nepherhotep, mbertheau)
  43. * Python 3.3 and 3.4 testing and support (frewsxcv, jsocol)
  44. 1.2 (2013-07-23)
  45. ~~~~~~~~~~~~~~~~
  46. * Python 3 support (melinath and jonashaag)
  47. * Django 1.5 compat (fabiosantoscode)
  48. 1.1 (2012-05-19)
  49. ~~~~~~~~~~~~~~~~
  50. * Django TransactionTestCases don't clean up after themselves; they leave
  51. junk in the DB and clean it up only on ``_pre_setup``. Thus, Django makes
  52. sure these tests run last. Now django-nose does, too. This means one fewer
  53. source of failures on existing projects. (Erik Rose)
  54. * Add support for hygienic TransactionTestCases. (Erik Rose)
  55. * Support models that are used only for tests. Just put them in any file
  56. imported in the course of loading tests. No more crazy hacks necessary.
  57. (Erik Rose)
  58. * Make the fixture bundler more conservative, fixing some conceivable
  59. situations in which fixtures would not appear as intended if a
  60. TransactionTestCase found its way into the middle of a bundle. (Erik Rose)
  61. * Fix an error that would surface when using SQLAlchemy with connection
  62. pooling. (Roger Hu)
  63. * Gracefully ignore the new ``--liveserver`` option introduced in Django 1.4;
  64. don't let it through to nose. (Adam DePue)
  65. 1.0 (2012-03-12)
  66. ~~~~~~~~~~~~~~~~
  67. * New fixture-bundling plugin for avoiding needless fixture setup (Erik Rose)
  68. * Moved FastFixtureTestCase in from test-utils, so now all the
  69. fixture-bundling stuff is in one library. (Erik Rose)
  70. * Added the REUSE_DB setting for faster startup and shutdown. (Erik Rose)
  71. * Fixed a crash when printing options with certain verbosities. (Daniel Abel)
  72. * Broke hard dependency on MySQL. Support PostgreSQL. (Roger Hu)
  73. * Support SQLite, both memory- and disk-based. (Roger Hu and Erik Rose)
  74. * Nail down versions of the package requirements. (Daniel Mizyrycki)
  75. .. Omit older changes from package
  76. 0.1.3 (2010-04-15)
  77. ~~~~~~~~~~~~~~~~~~
  78. * Even better coverage support (rozza)
  79. * README fixes (carljm and ionelmc)
  80. * optparse OptionGroups are handled better (outofculture)
  81. * nose plugins are loaded before listing options
  82. 0.1.2 (2010-08-14)
  83. ~~~~~~~~~~~~~~~~~~
  84. * run_tests API support (carjm)
  85. * better coverage numbers (rozza & miracle2k)
  86. * support for adding custom nose plugins (kumar303)
  87. 0.1.1 (2010-06-01)
  88. ~~~~~~~~~~~~~~~~~~
  89. * Cleaner installation (Michael Fladischer)
  90. 0.1 (2010-05-18)
  91. ~~~~~~~~~~~~~~~~
  92. * Class-based test runner (Antti Kaihola)
  93. * Django 1.2 compatibility (Antti Kaihola)
  94. * Mapping Django verbosity to nose verbosity
  95. 0.0.3 (2009-12-31)
  96. ~~~~~~~~~~~~~~~~~~
  97. * Python 2.4 support (Blake Winton)
  98. * GeoDjango spatial database support (Peter Baumgartner)
  99. * Return the number of failing tests on the command line
  100. 0.0.2 (2009-10-01)
  101. ~~~~~~~~~~~~~~~~~~
  102. * rst readme (Rob Madole)
  103. 0.0.1 (2009-10-01)
  104. ~~~~~~~~~~~~~~~~~~
  105. * birth!