Added a migration to go with the liaison updates.
- Legacy-Id: 10507
This commit is contained in:
parent
6ab5365296
commit
ff6969815c
21
changelog
21
changelog
|
@ -1,3 +1,24 @@
|
|||
ietfdb (6.11.0) ietf; urgency=medium
|
||||
|
||||
**Liaison Tool Enhancement**
|
||||
|
||||
This release introduces a number of requested changes and enhancements
|
||||
to the liaison tool, and a few other fixed:
|
||||
|
||||
* Merged in^/personal/rcross/v6.7.3.dev0@10465, which included
|
||||
[10382],[10464],[10465], introducing a number of usability fixes to the
|
||||
liaison tool, including a new tab for action needed statements and the
|
||||
ability to add comments to liaison statements' history.
|
||||
|
||||
* Merged in [10503] from rjsparks@nostrum.com:
|
||||
Allow setting the stream state of a document that has not yet had any
|
||||
stream state set. Fixes #1859. Candidate for patch.
|
||||
|
||||
* Updated the docker README.
|
||||
|
||||
* Updated the mkrelease script to send svn checkout links which specify
|
||||
https://, not http.
|
||||
|
||||
ietfdb (6.10.0) ietf; urgency=medium
|
||||
|
||||
**Prepackaged Development Environment with Docker; Test Speed-Ups**
|
||||
|
|
26
ietf/liaisons/migrations/0010_auto_20151119_1317.py
Normal file
26
ietf/liaisons/migrations/0010_auto_20151119_1317.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('liaisons', '0009_remove_fields'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='liaisonstatement',
|
||||
name='title',
|
||||
field=models.CharField(max_length=255),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='liaisonstatement',
|
||||
name='to_contacts',
|
||||
field=models.CharField(help_text=b'Contacts at recipient group', max_length=255),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue