Skip to content

Commit ff69698

Browse files
committed
Added a migration to go with the liaison updates.
- Legacy-Id: 10507
1 parent 6ab5365 commit ff69698

2 files changed

Lines changed: 47 additions & 0 deletions

File tree

changelog

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
ietfdb (6.11.0) ietf; urgency=medium
2+
3+
**Liaison Tool Enhancement**
4+
5+
This release introduces a number of requested changes and enhancements
6+
to the liaison tool, and a few other fixed:
7+
8+
* Merged in^/personal/rcross/v6.7.3.dev0@10465, which included
9+
[10382],[10464],[10465], introducing a number of usability fixes to the
10+
liaison tool, including a new tab for action needed statements and the
11+
ability to add comments to liaison statements' history.
12+
13+
* Merged in [10503] from rjsparks@nostrum.com:
14+
Allow setting the stream state of a document that has not yet had any
15+
stream state set. Fixes #1859. Candidate for patch.
16+
17+
* Updated the docker README.
18+
19+
* Updated the mkrelease script to send svn checkout links which specify
20+
https://, not http.
21+
122
ietfdb (6.10.0) ietf; urgency=medium
223

324
**Prepackaged Development Environment with Docker; Test Speed-Ups**
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('liaisons', '0009_remove_fields'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='liaisonstatement',
16+
name='title',
17+
field=models.CharField(max_length=255),
18+
preserve_default=True,
19+
),
20+
migrations.AlterField(
21+
model_name='liaisonstatement',
22+
name='to_contacts',
23+
field=models.CharField(help_text=b'Contacts at recipient group', max_length=255),
24+
preserve_default=True,
25+
),
26+
]

0 commit comments

Comments
 (0)