Added a couple of missing migrations.

- Legacy-Id: 14010
This commit is contained in:
Henrik Levkowetz 2017-07-31 12:11:08 +00:00
parent 138f3d7382
commit e54a24b931
3 changed files with 57 additions and 11 deletions

View file

@ -6,9 +6,18 @@ ietfdb (6.58.0) ietf; urgency=medium
It contains work from the later part of the IETF 99 week, and additional
work since then.
* Merged in [13996] from rcross@amsl.com:
Moved Announcement 'From:' addresses out of code and into a database
table. Fixes #1681.
* Added the ability to emit detailed line-by line changes in code coverage
to the coverage_changes management command. Use verbosity 2 or higher.
* Added an admin model for the MeetingRegistration class.
* Fixed a couple of html issues introduced in the previous release.
* Changed from get_meetings() to get_meeting() for
* Changed from using get_meetings() to get_meeting() in
meeting.views.floor_plan(), in order to raise 404 on missing meetings.
This fixes a server 500 on /meeting/floor-plan/ for nonexistant meetings.
@ -28,8 +37,8 @@ ietfdb (6.58.0) ietf; urgency=medium
* Pointed at the datatracker's document pages, instead of directly at the
document in question, for drafts and RFCs on a person's profile page.
This reverts to the functionality as originally implemented, but uses the
correct doc.get_absolute_url instead of doc.href() (which incorrectly did
the same as get_absolute_url in some cases until recently).
correct doc.get_absolute_url() instead of doc.href() (which incorrectly did
the same as get_absolute_url() in some cases until recently).
Fixes issue #2340.
* Made Document.href() point at the rfc when doc.is_rfc().
@ -46,9 +55,9 @@ ietfdb (6.58.0) ietf; urgency=medium
Query unique person objects when searching for duplicates based on
aliases. Fixes #2263.
* Removed the old admin styling; things have moved on to the point where it
doesn't work well any more. The new style requires more screen space,
but it seems we have to accept that now.
* Removed the old Django admin styling; things have moved on to the point
where it doesn't work well any more. The new Django admin style requires
more screen space, but it seems we have to accept that now.
* Changed the menubar link to meeting materials to explicitly point at
/meeting/materials/, not just /meeting/.
@ -57,9 +66,6 @@ ietfdb (6.58.0) ietf; urgency=medium
session-specific urls, and more consistently pointed to explicitly named
meeting materials. Related to commit [13964].
* Added a new release-coverage format which whould make it easier to show
line-by-line code test coverage changes in the future.
* Fixed a time arithmetic issue in meeting cutoff-date methods.
* Changed the display of individual item update times on the materials
@ -67,7 +73,7 @@ ietfdb (6.58.0) ietf; urgency=medium
slides link became intrusive and annoying. Changed to display a bell if
the update is within one day of now, and to display the time tooltip when
hovering over the bell. Also corrected the colspan numbers for cancelled
sessions, for consistency.
sessions, for consistency in the look of the materials table.
* Added urls and views for individual meeting documents, in order to be able
to serve them directly from the datatracker, instead of taking them from
@ -81,7 +87,7 @@ ietfdb (6.58.0) ietf; urgency=medium
Tweak to the important dates page title.
* Merged in [13957] from rjsparks@nostrum.com:
Moves Important Dates into the datatracker. Fixes #2338.
Moved Important Dates for Meetings into the datatracker. Fixes #2338.
* Merged in [13955] from kivinen@iki.fi:
Changed links to previous reviews go to the doc page of the last

View file

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-07-31 05:08
from __future__ import unicode_literals
import django.core.validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('doc', '0031_remove_fake_email_adresses'),
]
operations = [
migrations.AlterField(
model_name='document',
name='name',
field=models.CharField(max_length=255, primary_key=True, serialize=False, validators=[django.core.validators.RegexValidator(b'^[-a-z0-9]+$', b'Provide a valid document name consisting of lowercase letters, numbers and hyphens.', b'invalid')]),
),
]

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-07-31 05:08
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('message', '0006_add_announcement_from'),
]
operations = [
migrations.AlterModelOptions(
name='announcementfrom',
options={'verbose_name_plural': 'Announcement From addresses'},
),
]