|
| 1 | +ietfdb (7.6.0) ietf; urgency=medium |
| 2 | + |
| 3 | + Django 2.2 transition changes: |
| 4 | + |
| 5 | + * New branch for 7.5.1.dev0 |
| 6 | + |
| 7 | + * Changed deprecated 'load staticfiles' to recommended 'load static' |
| 8 | + |
| 9 | + * Added a warnings filter. Removed the use request_profiler, which is |
| 10 | + not compatible with Django 2.2. |
| 11 | + |
| 12 | + * Removed an unused parameter from submit.tests.do_submission_email(). |
| 13 | + |
| 14 | + * Updated requirements for Django 2.2. |
| 15 | + |
| 16 | + * Fixed an issue where a session was saved without a type_id, found by |
| 17 | + the Django 2.2 checks. The code set the value just after the first save, |
| 18 | + and then did a second save, but this is 1) more costly, and 2) keeps an |
| 19 | + invalid session object in the database for a short time. |
| 20 | + |
| 21 | + * Fixed a place where data provider for a POST in contained None, which |
| 22 | + cannot be serialized into POST data. Found by Django 2.2 checks. |
| 23 | + |
| 24 | + * Django 2.2 does not wrap single queries in transactions, for |
| 25 | + performance reasons. This caused some template tags that did database |
| 26 | + lookups to trigger exceptions. Fixed by moving the lookups (which would |
| 27 | + not normally change between apache reloads) out from the template tag code |
| 28 | + to module scope. Adding new groups of type |
| 29 | + ['ag','area','team','dir','program'] will now require a reload to show up |
| 30 | + in the group menu. |
| 31 | + |
| 32 | + Other changes: |
| 33 | + |
| 34 | + * Changed skip messages from test suites to use print() instead of |
| 35 | + sys.stderr.write(), to match other output from the test runner. |
| 36 | + |
| 37 | + -- Henrik Levkowetz <henrik@levkowetz.com> 27 Jun 2020 17:33:10 +0000 |
| 38 | + |
| 39 | + |
1 | 40 | ietfdb (7.5.0) ietf; urgency=medium |
2 | 41 |
|
3 | 42 | **Django 2.1 upgrade, CodiMD support, bluesheet support for Meetecho, and bugfixes** |
|
0 commit comments