~ubuntu-branches/ubuntu/raring/nova/raring-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
nova (1:2013.1.3-0ubuntu1) raring-proposed; urgency=low

  * Resynchronize with stable/grizzly (89c7ee4) (LP: #1210447):
    - [8e6edd2] Bump stable/grizzly next version to 2013.1.3
    - [61fc529] attach quantum security group to an existing vm failed
      LP: 1189059
    - [60774bd] nova-compute fails to start if quantum is down LP: 1186357
    - [8e6d4b6] asymmetric routes in nova network with external gateway and
      routing_source_ip LP: 1182143
    - [8849413] Failed VM's not set to error state on exception LP: 1182056
    - [ef10eee] Double healing of info_cache with cells LP: 1180304
    - [7422d83] Can't log into  VM after powervm is resized LP: 1169848
    - [49ab0e8] stack trace when instance_actions extension can not find
      instance in GET LP: 1182867
    - [e71247c] nova service-list returns illegal result with non db service
      heartbeat LP: 1168861
    - [3f60606] Volume IO usage gets reset to 0 after a reboot / crash
      LP: 1169097
    - [19c443b] unused method  list_interfaces in vmware driver can be removed
      LP: 1187251
    - [a8dab9f] No cleanup done when file transfer fails with powervm driver
      LP: 1173017
    - [fc98015] nova consoleauth depends on Conductor Service LP: 1186123
    - [1066418] VMware drivers are no longer passing quantum port-id to
      vCenter LP: 1183452
    - [b92075c] nova net-list fails on empty list with Quantum backend
      LP: 1189976
    - [3ba31f2] Create VM with no networks with Quantum Gives SecurityGroups
      Exception LP: 1191044
    - [89150b2] Periodic ValueErrors when using qpid LP: 1185465
    - [0e0d615] Libvirt pre-Grizzly instances cannot be block migrated
      LP: 1185588
    - [27960ef] ZMQ ipc socket file is created using un-sanitized network
      input LP: 1122763
    - [265b868] cannot block migrate old style instances libvirt complains
      LP: 1175286
    - [008a68a] code logical error exists in vmwareapi vif.py  LP: 1177635
    - [378c045] Instance IP addresses are re-used even when previous instance
      could not be powered off LP: 1180178
    - [48ddffe] Reboot of compute node breaks VMs with volumes LP: 1188326
    - [f427f01] Missing dashes from console-log LP: 1194032
    - [78ebf1a] network-create returns an internal error when network
      conflicts LP: 1158075
    - [767c850] Instance nics are reorder after reboot LP: 1187092
    - [0b45996] instance directory naming update to use uuid  LP: 1186944
    - [06cfad5] Disassociate failed dhcp fixed ip in deallocate_for_instance()
      method LP: 1180766
    - [cbcdfc5] Allow confirm_resize action on an instance in 'deleting'
      status LP: 1189391
    - [2563c44] aggregate_get_by_host returns aggregates from other hosts
      LP: 1201277
    - [109f3a9] nova libvirt driver requires iscsi initiator name regardless
      of using it in volume drivers LP: 1007084
    - [7f1c336] Host is always set to None in get_instance_nw_info(...)
      LP: 1194178
    - [1cf30a3] nova boot with colume should fail if the volume is already
      attached to another instance LP: 1166770
    - [9cb9361] Aggregate metadata filtering by key returns unrelated metadata
      LP: 1201283
    - [a61872b] Need clean up  ftp transfer faiure  in powervm driver
      LP: 1188884
    - [91bcd15] Race can cause soft deleted instance to be erased by mistake
      LP: 1186243
    - [c57fded] Nova fails to create a security group rule if ::0/0 is used as
      cidr LP: 1199943
    - [c698dd3] VMwareESXDriver and VMwareVCDriver report incorrect stat
      LP: 1180779
    - [e572faf] novnc fails when amqp_rpc_single_reply_queue=True LP: 1193031
    - [34ddd27] eventlet.monkey_patch() for spice and vnc proxy
    - [864837f] hypervisor_hostname not updated on evacuate LP: 1198284
    - [756a772] libvirt migrate/resize on shared storage can cause data loss
      LP: 1177247
    - [889b215] nova live-migration of volume-backed VM fails because of image
      is None LP: 1199811
    - [60712a4] VNC console does not work with VCDriver LP: 1178369
    - [e0aa0f5] metadata service throws error 500 when compute_driver is not
      set LP: 1184641
    - [340d337] Instance IP addresses are re-used even when previous instance
      could not be powered off LP: 1180178
    - [8247dc8] Resource limit circumvention in Nova private flavors
      (CVE-2013-2256) LP: 1194093
    - [bd7e467] Denial of Service in Nova network source security groups
      (CVE-2013-4185) LP: 1184041
    - [c3fddb7] Resize a VM when a volume is attached fails LP: 1190364
    - [01edbaa] Hyper-V versions before 2012 are not properly recognized
      LP: 1203059
    - [b18818a] driver libvirt doesn't honor vif quota LP: 1185030
    - [798984d] config drive not visible to windows LP: 1155842
    - [d18ceb1] nova live-migration failed due to exception.MigrationError
      LP: 1171526
    - [1934dbc] vmware Hyper for nova vnc console url parameters error
      LP: 1172177
    - [89c7ee4] [OSSA 2013-023] Potential unsafe XML usage (CVE-2013-4179,
      CVE-2013-4202) LP: 1190229
  * debian/rules: Clean new setuptools-git cruft.
  * debian/control: Update Vcs fields.

 -- Adam Gandelman <adamg@ubuntu.com>  Fri, 09 Aug 2013 10:12:27 +0100

nova (1:2013.1.2-0ubuntu1) raring-proposed; urgency=low

  * Dropped patches, applied upstream:
    - debian/patches/CVE-2013-2096.patch: [a4fc0c8]
  * Resynchronize with stable/grizzly (8c136a8e) (LP: #1188788):
    - [8c136a8] instance_type data cannot be extracted from sys_meta after
      instance deleted LP: 1185190
    - [6556344] Some nova.tests.integrated.test_api_samples.Hypervisors* tests
      fail when run as single test LP: 1177802
    - [bc35dba] Make nova.virt.fake.FakeDriver useable in integration testing
    - [ab51ac6] Cannot resize instance if base image is not available
      LP: 1160773
    - [4933c15] FC attach code doesn't discover multipath device LP: 1180497
    - [605ea6f] Failure to snapshot backend LP: 1166160
    - [ec335d0] bug in get_instance_security_groups() if security group has no
      name LP: 1182738
    - [fdb33fb] Traceback from cinderclient in nova-api log for BadRequest
      errors LP: 1098048
    - [de50a5a] vmwareapi: Add supported_instances to host state
    - [129d118] ERROR: test_resize_server_revert BuildErrorException LP: 1161529
    - [e05cf67] EC2 API throws stacktrace if adding security group rule that
      already exists LP: 1180973
    - [158f003] The hypervisor_hostname is not updated after live migration
      LP: 1173376
    - [b4d8cfe] variable referenced before assignment in vmwareapi code
      LP: 1177689
    - [40f3eed] Some Compute API methods unnecessarily alter the vm_state.
      LP: 1158509
    - [d4bed18] Cannot resize a volume backed instance booted without an image
      LP: 1182114
    - [bba57e9] nova interface-attach fails with quantum LP: 1171636
    - [e0a8bdd] InstanceMetadata content can be None LP: 1163598
    - [5094e83] nova coverage create lots empty folders even with coverage
      extension disabled LP: 1169005
    - [76eb8f7] ZooKeeper servicegroup driver is trying to import module by
      wrong name LP: 1177776
    - [b8c4346] Inconsistent connectivity between instances with floating IPs
      LP: 1178745
    - [726ae59] race condition between delete instance(with floating ip
      associated) and delete floating ip LP: 1172599
    - [498ce52] Don't swallow missing SR error LP: 1175357
    - [be0a14a] Nic Ordering not guaranteed with nova-network API LP: 1170725
    - [3c84539] Detach volume fails when using multipath iscsi LP: 1178893
    - [fc5c6ec] Quantum Security Group driver doesn't accept none value for
      from_port & to _port LP: 1176027
    - [784b6e4] ERROR in log when rebooting too soon after a reboot LP: 1157237
    - [3b52002] Resize revert operations fail with stack traces LP: 1180111
    - [25f2025] Live migration fails when the instance booted from volume has no
      image. LP: 1170596
    - [1ffab28] internal service AZ not hidden for disabled zones LP: 1167956
    - [c532f7a] Key error thrown when create lpar instance failed LP: 1173303
    - [a35e0f4] soft delete values in InstanceSystemMetadata on instance delete
      LP: 1153827
    - [1a682a5] Restarting compute service mistakenly reboots live instance
      LP: 1176897
    - [a4fc0c8] [OSSA 2013-012] Unchecked qcow2 root disk sizes LP: 1177830
    - [4226aa9] Nova evacuate failed when the VM is in shutoff status
      LP: 1176773
    - [687cd67] floating ip assignment can fail silently LP: 1178658
    - [5358ee9] when using multi_host and update_dns_entries dnsmasq is missing
      addn-hosts arg LP: 1170529
    - [325ab8f] wrong instance bdm response in ec2 api LP: 1165973

 -- Adam Gandelman <adamg@ubuntu.com>  Fri, 07 Jun 2013 13:28:36 -0400

nova (1:2013.1.1-0ubuntu2) raring-proposed; urgency=low

  * Rebase on latest security updates.
  * SECURITY UPDATE: verify virtual size of QCOW2 images
    - CVE-2013-2096.patch: update nova/virt/libvirt/imagebackend.py to
      check QCOW2 image size during root disk creation
    - CVE-2013-2096

 -- James Page <james.page@ubuntu.com>  Fri, 17 May 2013 11:02:27 +0100

nova (1:2013.1.1-0ubuntu1) raring-proposed; urgency=low

  * Resynchronize with stable/grizzly (be94dd25) (LP: #1179626):
    - [e49e38c] ArchiveTestCase.test_archive_deleted_rows_fk_constraint fails on
      RHEL6 LP: 1158828
    - [7bf3e8d] Insecure directory creation for signing LP: 1174608
    - [55df546] VMware Hyper snapshot image missing some properties LP: 1174199
    - [447e4a3] _update_usage_from_migrations doesn't grab instance for
      migration LP: 1163622
    - [79ad6cb] baremetal nodes are garbage collected incorrectly LP: 1174952
    - [2e55ecc] volume attach fails without systool installed LP: 1172486
    - [5576985] Nova API memcached key encoding error LP: 1174487
    - [df5d13c] nova-manage out of memory error creating many floating IPs
      LP: 1163394
    - [512d495] import and install gettext in vm_vdi_cleaner.py
    - [141107f] nova-manage uses nova.db.fixed_ip_get_all_by_instance_host,
      which no longer exists LP: 1163660
    - [a43c11e] Wrong proxy port in nova.conf for Spice LP: 1172957
    - [a313b12] image creation causes stacktrace LP: 1169560
    - [7771985] Kernel boot output missing from VNC/Spice consoles with AMI
      images LP: 1164021
    - [c185195] EC2 CreateVolumes/DescribeVolumes strange status  LP: 1074901
    - [1168873] console auth does not work with memcache, unicode error (again)
      LP: 1164784
    - [c7a0d74] Passing duplicate network ids to Quantum throws wrong exception
      LP: 1165088
    - [a1fe8e2] _poll_rescued_instances() makes an invalid database query
      LP: 1167619
    - [6c01eee] ec2 api does not work for aws-java-sdk LP: 1156445
    - [1ecc009] Caching metadata fails when using memcached LP: 1160900
    - [9909095] Unnecessary db call in scheduler driver live-migration code
      LP: 1167811
    - [a3cc7bc] libvirt livemigration warning logger refernces a not defined
      local variable LP: 1164072
    - [2574421] set timeout for paramiko ssh connection
    - [7e527ca] Compute manager fails to cleanup compute_nodes not reported by
      driver LP: 1161193
    - [52663f7] Instance joins with system_metadata are critically slow
      LP: 1164737
    - [e653938] nova list quantum security group cache  LP: 1161518
    - [f7bcd95] get_instance_security_groups() get_admin_context() causes lots
      of keystone chatter LP: 1161081
    - [232f874] Nova API Memcached Encoding Error LP: 1158958
    - [6d16278] Wrong disk's over committed size computing caused
      disk_available_least resource counting increasing LP: 1167695
    - [02da2d5] PolicyNotAuthorized not returned for confirmResize,
      revertResize, reboot LP: 1170453
    - [05e1c47] In-progress migrations may not have stashed instance types
      LP: 1164110
    - [e48e194] Update latest oslo.setup.
    - [9db4729] Argument order inconsistancy in
      nova.network.quantumv2.api.get_instance_nw_info() LP: 1159042
    - [c4cd98c] remove unecessary function argument  in vmwareapi LP: 1171376
    - [71e39dc] Cannot boot Nova as quantum throws 404 when Floating IP
      extension unavailable LP: 1163670
    - [0f4c3f9] sql_connection not marked secret LP: 1160680
    - [c118890] _error_out_instance_on_exception not playing well with eventlet
      LP: 1163552
    - [308e721] Fix a typo in attach_interface error path
    - [44d42e2] libvirt: use_cow_images=false and force_raw_images=false broken
      LP: 1163009
    - [99b77cc] migrate/resize failed in same host with powervm driver
      LP: 1161226
    - [994ed95] Live-migration leaves instance in MIGRATING state if scheduler
      fails to find a host LP: 1166771
    - [c244d66] Instances deleted during migration cause exception in
      _destroy_evacuated_instances LP: 1155152
    - [54fd249] nova net-list not return network uuid but id instead LP: 1162409
    - [b2ec668] legacy_net_info guard incompatible with new-style NetworkInfo
      LP: 1164152
    - [8859914] Security groups may be unavailable
    - [3861f8c] Correctly handle an empty dnsmasq --domain LP: 1161506
    - [da1763b] Don't join metadata twice in instance_get_all()
    - [bcd02dd] Instance joins with system_metadata are critically slow
      LP: 1164737
    - [e93ea66] Optimize resource tracker queries for instances
    - [fd66545] Set defaultbranch in .gitreview to stable/grizzly

 -- Adam Gandelman <adamg@ubuntu.com>  Tue, 14 May 2013 07:49:17 -0700

nova (1:2013.1-0ubuntu2.1) raring-security; urgency=low

  * SECURITY UPDATE: verify virtual size of QCOW2 images
    - CVE-2013-2096.patch: update nova/virt/libvirt/imagebackend.py to
      check QCOW2 image size during root disk creation
    - CVE-2013-2096

 -- Jamie Strandboge <jamie@ubuntu.com>  Wed, 15 May 2013 15:16:46 -0500

nova (1:2013.1-0ubuntu2) raring; urgency=low

  * debian/nova-cells.upstart: Fix typo in upstart job. (LP: #1163218) 
  * debian/control: Add iptables dependency. (LP: #1172393)

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 24 Apr 2013 07:39:25 -0500

nova (1:2013.1-0ubuntu1) raring; urgency=low

  * New upstream release. 

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 04 Apr 2013 10:42:21 -0500

nova (1:2013.1~rc2-0ubuntu1) raring; urgency=low

  [ James Page ]
  * d/control: Promote novnc and websockify to Depends for
    nova-novncproxy (LP: #1066845). 

  [ Chuck Short ]
  *  New upstream release.

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 02 Apr 2013 08:44:39 -0500

nova (1:2013.1~rc1-0ubuntu1) raring; urgency=low

  [ Chuck Short ]
  * New upstream release.
  * debian/patches/avoid_setuptools_git_dependency.patch: Refreshed.
  * debian/control: Clean up dependencies:
    - Dropped python-gflags no longer needed.
    - Dropped python-daemon no longer needed.
    - Dropped python-glance no longer needed.
    - Dropped python-lockfile no longer needed.
    - Dropped python-simplejson no longer needed.
    - Dropped python-tempita no longer needed.
    - Dropped python-xattr no longer needed.
    - Add sqlite3 required for the testsuite.

  [ James Page ]
  * d/watch: Update uversionmangle to deal with upstream versioning
    changes, remove tarballs.openstack.org. 

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 20 Mar 2013 12:59:22 -0500

nova (2013.1.g3-0ubuntu1) raring; urgency=low

  [ Chuck Short ]
  * New usptream release. 
  * debian/patches/debian/patches/fix-ubuntu-tests.patch: Refreshed.
  * debian/nova-baremetal.logrotate: Fix logfile path.
  * debian/control, debian/nova-spiceproxy.{install, logrotate, upstart}:
    Add spice html5 proxy support.
  * debian/nova-novncproxy.upstart: Start on runlevel [2345]
  * debian/rules: Call testr directly since run_tests.sh -N gives weird return
    value when tests pass.
  * debian/pyddist-overrides: Add websockify.
  * debian/nova-common.postinst: Removed config file conversion, since
    the option is no longer available. (LP: #1110567)
  * debian/control: Add python-pyasn1 as a dependency.
  * debian/control: Add python-oslo-config as a dependency.
  * debian/control: Suggest sysfsutils, sg3-utils, multipath-tools for fibre
    channel support.

  [ Adam Gandelman ]
  * debian/control: Fix typo (websocikfy -> websockify).

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 22 Feb 2013 09:27:29 -0600

nova (2013.1~g2-0ubuntu3) raring; urgency=low

  * SECURITY UPDATE: fix lack of authentication on block device used for
    os-volume_boot
    - debian/patches/CVE-2013-0208.patch: adjust nova/compute/api.py to
      validate we can access the volumes
    - CVE-2013-0208

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 24 Jan 2013 08:23:44 -0600

nova (2013.1~g2-0ubuntu2) raring; urgency=low

  * Make nova-compute-kvm prefer qemu-system over kvm for the new qemu.

 -- Adam Conrad <adconrad@ubuntu.com>  Sat, 19 Jan 2013 07:00:56 -0700

nova (2013.1~g2-0ubuntu1) raring; urgency=low

  [ Chuck Short ]
  * New upstream release.
  * debian/patches/ubuntu-show-tests.patch: Dropped no longer needed.
  * debian/nova-xcp-plugins.install: Fix xcp-plugins empty packages
  * debian/control: Drop python-nose in favor or testrepository
  * debian/control: Add python-coverage as a build dep.
  * debian/rules, debian/control: Run pep8 tests.
  * debian/*.init: Remove they are not needed and take up space
  * debian/control, debian/nova-cells.{install, logrotate, upstart}: Add
    cells support.
  * debian/patches/fix-ubuntu-tests.patch: temporarily disable failing tests.
  * debian/control, debian/nova-baremetal.{install, logrotate, upstart}: Add
    nova baremetal support.
  * debian/control: Remove python-support.

  [ Adam Gandelman ]
  * debian/*.manpages: Install Sphinx-generated manpages instead of
    our own.
  * debian/nova-compute-*.conf: Specify the newly required compute_driver
    flag in addition to libvirt_type.
  * debian/control:  Specify required python-webob and python-stevedore
    versions.

  [ Yolanda Robla ]
  * debian/*.upstart: Use start-stop-daemon instead of su for chuid
    (LP: #1086833).
  * debian/rules: Remove override of dh_installinit for discriminating
    between Debian and Ubuntu.
  * debian/nova-common.docs: Installing changelogs from rules
  * debian/rules: Replacing perms in /etc/nova/logging.conf for 0644
  * debian/control: adduser dependency on nova-compute.
  * debian/control: added section oldlibs and priority extra on
    nova-ajax-console-proxy.
  * debian/nova-xvpvncproxy.postrm: removing because of duplicates.

  [ James Page ]
  * d/control: Add ~ to python-sqlalchemy-ext versioned dependencies to
    make backporting easier.
  * d/control: Updated nova-volume description and depdendencies to
    mark it as a transitional package, moved to oldlibs/extra.
  * d/p/fix-libvirt-tests.patch: Dropped; accepted upstream.
  * d/control: Added python-stevedore to BD's.
  * d/*.postrm: Dropped postrm's that just run update-rc.d; this is not
    required when deploying upstart configurations only.
  * d/nova-scheduler.manpages: Add man page for nova-rpc-zmq-receiver.
  * d/rules: Install upstream changelog with a policy compliant name.
  * d/control: Mark nova-compute-xcp as virtual package.
  * d/control: nova-api-os-volume; Depend on cinder-api and mark as
    transitional package.
  * d/nova-api-os-volume.lintian-overrides: Dropped - no longer required.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 11 Jan 2013 13:06:56 -0600

nova (2013.1~g1-0ubuntu1) raring; urgency=low

  [ Adam Gandelman ]
  * debian/control: Ensure novaclient is upgraded with nova,
    require python-keystoneclient >= 1:2.9.0. (LP: #1073289)
  * debian/patches/{ubuntu/*, rbd-security.patch}: Dropped, applied
    upstream.
  * debian/control: Add python-testtools to Build-Depends.

  [ Chuck Short ]
  * New upstream version.
  * Refreshed debian/patches/avoid_setuptools_git_dependency.patch.
  * debian/rules: FTBFS if missing binaries.
  * debian/nova-scheudler.install: Add missing rabbit-queues and
    nova-rpc-zmq-receiver.
  * Remove nova-volume since it doesnt exist anymore, transition to cinder-*.
  * debian/rules: install apport hook in the right place.
  * debian/patches/ubuntu-show-tests.patch: Display test failures.
  * debian/control: Add depends on genisoimage
  * debian/control: Suggest guestmount.
  * debian/control: Suggest websockify. (LP: #1076442)
  * debian/nova.conf: Disable nova-volume service.
  * debian/control: Depend on xen-system-* rather than the hypervisor.
  * debian/control, debian/mans/nova-conductor.8, debian/nova-conductor.init,
    debian/nova-conductor.install, debian/nova-conductor.logrotate
    debian/nova-conductor.manpages, debian/nova-conductor.postrm
    debian/nova-conductor.upstart.in: Add nova-conductor service.
  * debian/control: Add python-fixtures as a build deps.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 23 Nov 2012 09:32:05 -0600

nova (2012.2-0ubuntu5) quantal; urgency=low

  [ Adam Gandelman ]
  * Move management of /var/lib/nova/volumes from nova-common to
    nova-volume.  Ensure it has proper permissions. (LP: #1065320)
  * debian/patches/avoid_setuptools_git_dependency.patch:  Remove
    setuptools_git from tools/pip-requires to avoid it being automatically
    added to python-nova's runtime dependencies. (LP: #1059907)

  [ Chuck Short ]
  * debian/patches/rbd-security.patch: Support override of ceph rbd
    user and secret in nova-compute. (LP: #1065883)
  * debian/patches/ubuntu/fix-libvirt-firewall-slowdown.patch: Fix
    refreshing of security groups in libvirt not to block on RPC calls.
    (LP: #1062314)
  * debian/patches/ubuntu/fix-ec2-volume-id-mappings.patch: Read deleted
    snapshot and volume id mappings. (LP: #1065785)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 12 Oct 2012 12:35:01 -0500

nova (2012.2-0ubuntu4) quantal; urgency=low

  * debian/patches/ubuntu/ubuntu-fix-ec2-instance-id-mappings.patch:
    Backport from trunk, Set read_deleted='yes' for instance_id_mappings. 
    (LP: #1061166)

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 09 Oct 2012 11:51:15 -0500

nova (2012.2-0ubuntu3) quantal; urgency=low

  * nova-xvpvncproxy, nova-novncproxy: Add missing .install, .logrotate,
    .postrm, manpages and upstart jobs (LP: #1060336)
  * debian/{rules, nova-volume.install}: Rename nova_tgt to nova_tgt.conf so
    that it is actually loaded by tgt. (LP: #1060422)

 -- Adam Gandelman <adamg@canonical.com>  Tue, 02 Oct 2012 13:44:35 -0700

nova (2012.2-0ubuntu2) quantal; urgency=low

  * debian/patches/ubuntu-fix-32-64-bit-iss.patch: Backport
    ba8cca2b59bb2904635520ad12f6d9a73f10242c, python's builtin
    builtin hash returns different values on 32-bit and 64-bit architectures, 
    so it's safer to use a well-defined hash like MD5. This fixes a FTBFS
    in Ubuntu's buildds.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 28 Sep 2012 07:49:45 -0500

nova (2012.2-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * debian/control: Depend on python-sqlalchemy >= 0.7.8-1.

  [ Chuck Short ]
  * New upstream release.
  * debian/control: Dont conflict with novnc. (LP: #1055505)
  * debian/nova-volume.postinst, nova-common.dirs: Configure nova-volumes
    to use tgtd properly.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 27 Sep 2012 12:36:04 -0500

nova (2012.2~rc3-0ubuntu1) quantal; urgency=low

  * New upstream relase. 

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 26 Sep 2012 12:56:25 -0500

nova (2012.2~rc2-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * debian/control: Add python-cinderclient to python-nova Depends.
  * wrap-and-sort.

  [ Chuck Short ]
  * debian/nova-common.postinst: Change root_helper to rootwrap_config
    when upgrading from precise
  * debian/pydist-overrides: dont try to install babel.
  * New upstream version.
  * debian/rules: FTBFS if testsuite fails.

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 25 Sep 2012 10:54:59 -0500

nova (2012.2~rc1-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * Ensure /etc/nova/rootwrap.d/ is only writable by root, ensure
    those permissions on /etc/nova/rootwrap.conf as well as
    all individual filter configurations.

  [ Chuck Short ]
  * Fix lintian warnings
  * debian/*.lograote: compress logfiles when they are rotated. (LP:
    #1049915)
  * debian/control: 
    - Suggest ceph-common for nova-volume.
    - Add python-cinderclient as a build depends.

  [Vishvananda Ishaya]
  * Split up vncproxy and xvpvncproxy.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 20 Sep 2012 07:45:50 -0500

nova (2012.2~rc1~20120907.15996-0ubuntu1) quantal; urgency=low

  [ Chuck Short ]
  * New upstream release.
  * debian/nova-common.postinst: Drop nova_sudoers permission changing
    since we do it in the debian/rules. (LP: #995285)

  [ Soren Hansen ]
  * Update debian/watch to account for symbolically named tarballs and
    use newer URL.
  * Fix Launchpad URLs in debian/watch.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 07 Sep 2012 17:49:53 -0500

nova (2012.2~rc1~20120827.15815-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * New upstream release.

  [ Chuck Short ]
  * debian/patches/0001-Update-tools-hacking-for-pep8-1.2-and-
    beyond.patch: Dropped we dont run pep8 tests anymore.
  * debian/control: Drop pep8 build depends
  * debian/*.upstart.in: Make sure we transition correctly from runlevel
    1 to 2. (LP: #820694)

 -- Adam Gandelman <adamg@canonical.com>  Mon, 27 Aug 2012 15:37:18 -0700

nova (2012.2~f3-0ubuntu1) quantal; urgency=low

  [ Chuck Short ]
  * New upstream version.
  * debian/rules: Re-enable testsuite.
  * debian/control:
    - Add python-quantumclient as a build depends.
    - Bump standards to 3.9.3
    - Fix lintian warnings.
    - Recommend python-glanceclient and python-keystoneclient.
    - Add dependency of iptables for nova-network.
  * debian/watch: Update
  * debian/rules: Do not run pep8 tests since upstream is still using an
    older pep8.
  * debian/patches/0001-Update-tools-hacking-for-pep8-1.2-and-
    beyond.patch: Get the testsuite running again.
  * debian/nova-volume.install, debian/nova_tgt: Add support for
    persistent volumes.

  [ Adam Gandelman ]
  * debian/{nova-api.install, nova-api-metadata.install}: Install
    api-metadata.filters. (LP: #1002111)
  * debian/control: Added python-glanceclient.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 16 Aug 2012 14:04:11 -0500

nova (2012.2~f2-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * Use new rootwrap configuration structure:
    - debian/nova-{compute, network, volume}.{pyinstall, pyremove}: Dropped.
    - debian/nova-common.dirs: Add /etc/nova/rootwrap.d/.
    - debian/nova-common.install: Install /etc/nova/rootwrap.conf.
    - debian/debian/nova.conf: Reference rootwrap.conf in calls to
      nova-rootwrap.
    - debian/nova-{compute, network, volume}.install: Install corresponding
      filter in /etc/nova/rootwrap.d/
  * debian/rules: Install logging_sample.conf to /etc/nova/logging.conf
    as part of nova-common.
  * debian/pydist-overrides: Add setuptools-git.
  * debian/control: Add python-setuptools-git as a Build-Depends.
  * debian/rules: Do not remove nova.egg-info during auto_clean.  Now that
    upstream has moved to setuptools-git, doing so results in missing files
    from built package.

  [ Chuck Short ]
  * New upstream release.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 06 Jul 2012 10:18:33 -0400

nova (2012.2~f2~20120531.14249-0ubuntu4) quantal; urgency=low

  * debian/rules: Temporarily disable test suite while blocking
    tests are investigated.
  * debian/patches/kombu_tests_timeout.patch: Dropped.

 -- Adam Gandelman <adamg@canonical.com>  Tue, 19 Jun 2012 17:10:26 -0700

nova (2012.2~f2~20120531.14249-0ubuntu3) quantal; urgency=low

  [ Adam Gandelman ]
  * debian/patches/nova-manage_flagfile_location.patch: Dropped.
  * debian/nova-common.postinst: Old format config will break nova-manage
    if left in place.  Move it away instead of copying before conversion.
  * debian/nova.conf:  Set booleans explicitly '=true', specify path to paste
    config.
  * debian/*.init, debian/*.upstart.in, debian/mans/*: Update to use
    --config-file
    flag instead of obsolete --flagfile.
  * debian/nova-common.postinst: Also handle conversion of nova-compute.conf
    to new .ini format.

  [ Paul Belanger ]
  * Give nova group read permissions nova files / directories (LP: #989241)
  * Add adm group to /var/log/nova (LP: #989242)

 -- Adam Gandelman <adamg@canonical.com>  Tue, 05 Jun 2012 10:39:42 -0700

nova (2012.2~f2~20120531.14249-0ubuntu2) quantal; urgency=low

  * Really fix quantal postinst.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 01 Jun 2012 11:31:33 -0400

nova (2012.2~f2~20120531.14249-0ubuntu1) quantal; urgency=low

  * New upstream release.
  * debian/nova-common.postinst: Fix typo when upgrading. (LP: #1005479)
  * debian/nova-common.docs: Add ChangeLog
  * debian/patches/nova-manage_flagfile_location.patch: Refreshed
  * debian/patches/upstream: Removed

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 01 Jun 2012 11:07:00 -0400

nova (2012.2~f1-0ubuntu1) quantal; urgency=low

  * New upstream release.
  * Prepare for quantal:
    - Dropped debian/patches/upstream/0006-Use-project_id-in-ec2.cloud._format_image.patch
    - Dropped debian/patches/upstream/0005-Populate-image-properties-with-project_id-again.patch
    - Dropped debian/patches/upstream/0004-Fixed-bug-962840-added-a-test-case.patch
    - Dropped debian/patches/upstream/0003-Allow-unprivileged-RADOS-users-to-access-rbd-volumes.patch
    - Dropped debian/patches/upstream/0002-Stop-libvirt-test-from-deleting-instances-dir.patch
    - Dropped debian/patches/upstream/0001-fix-bug-where-nova-ignores-glance-host-in-imageref.patch
    - Dropped debian/patches/0001-fix-useexisting-deprecation-warnings.patch
  * debian/control: Add python-keystone as a dependency. (LP: #907197)
  * debian/patches/kombu_tests_timeout.patch: Refreshed.
  * debian/nova.conf, debian/nova-common.postinst: Convert to new ini
    file configuration
  * debian/patches/nova-manage_flagfile_location.patch: Refreshed

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 24 May 2012 13:12:53 -0400

nova (2012.1-0ubuntu2) precise; urgency=low

  [ Adam Gandelman ]
  * debian/rules: Properly create empty doc/build/man dir for builds that
    skip doc building
  * debian/control: Set 'Conflicts: nova-compute-hypervisor' for the various
    nova-compute-$type packages. (LP: #975616)
  * debian/control: Set 'Breaks: nova-api' for the various nova-api-$service
    sub-packages. (LP: #966115)

  [ Chuck Short ]
  * Resynchronize with stable/essex:
    - b1d11b8 Use project_id in ec2.cloud._format_image()
    - 6e988ed Fixes image publication using deprecated auth. (LP: #977765)
    - 6e988ed Populate image properties with project_id again
    - 3b14c74 Fixed bug 962840, added a test case.
    - d4e96fe Allow unprivileged RADOS users to access rbd volumes.
    - 4acfab6 Stop libvirt test from deleting instances dir
    - 155c7b2 fix bug where nova ignores glance host in imageref
  * debian/nova.conf: Enabled ec2_private_dns_show_ip so that juju can
    connect to openstack instances.
  * debian/patches/fix-docs-build-without-network.patch: Fix docs build
    when there is no network access.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 12 Apr 2012 14:14:29 -0400

nova (2012.1-0ubuntu1) precise; urgency=low

  * New upstream release.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 05 Apr 2012 11:00:38 -0400

nova (2012.1~rc4-0ubuntu1) precise; urgency=low

  * New upstream release.
  * debian/patches/nova-console-monitor.patch: Disabled.
  * debian/nova.conf: Removed console-monitor option.

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 04 Apr 2012 16:55:52 -0400

nova (2012.1~rc3-0ubuntu1) precise; urgency=low

  * New Upstream release.
  * debian/control: Conflict nova-vncproxy with novnc.

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 04 Apr 2012 09:25:14 -0400

nova (2012.1~rc2-0ubuntu1) precise; urgency=low

  [ Adam Gandelman ]
  * debian/control: Remove unncessary nova-cert dependency from nova-api.
    (LP: #965356)
  * debian/nova-common.postinst: Clean up spacing, remove redundant chown,
    set blanket 0700 nova.nova permissions on /etc/nova/
  * debian/nova-compute-{kvm, lxc, uml, xen}.postinst: Set proper permissions
    on /etc/nova/nova-compute.conf (LP: #861459)
  * debian/nova-common.postinst:  Ensure default nova.sqlite database is not
    world-readable.
  * debian/{rules, nova-common.{install, postinst}}: Install api-paste.ini 0600
    with nova-common (in prepartion for proper nova-api-* package separation)
  * debian/{nova-common.nova-manage.logrotate,
    nova-network.nova-dhcpbridge.logrotate, rules}: Add lograte files,
    override_dh_installlogrotate. (LP: #942646)
  * Add manpage stubs for nova-api-ec2, nova-api-metadata,
    nova-api-os-{volume, compute}, nova-rootwrap. Use sphinx built manpage
    for nova-manage (nova-common.manpages)
  * debian/nova-compute-{kvm, xen, uml, qemu}.postinst: Remove calls to
    adduser since this is already handled from nova-compute.postsinst in a
    vendor neutral way.  Silences lintian errors regarding adduser dependency

  [ Chuck Short ]
  * New upstream version.
  * debian/patches/libvirt-use-console-pipe.patch: Dropped.
  * debian/patches/nova-console-monitor.patch: Add console-monitor
    option.
  * debian/nova.conf: Enable use_console_monitor
  * debian/patches/fix-ubuntu-tests.patch: Fix nova testsuite.
  * debian/rules: fail package build if testsuite fails.
  * debian/patches/validate_server_name_length.patch: Dropped no longer
    needed.
  * debian/patches/fix-docs-build-without-network.patch: Some docs need
    a network connection in order to build. Disable fetching docs from
    the internet.
  * debian/patches/0001-fix-useexisting-deprecation-warnings.patch:
    Remove deprecated warnings with sqlalchemy.

  [ Tyler Hicks ]
  * SECURITY UPDATE: Denial of service via resource exhaustion in nova-api
    (LP: #968411)
    - debian/patches/validate_server_name_length.patch: Limit server names
      to a maximum of 255 characters to prevent nova-api log files from
      exhausting storage space. Based on upstream patch.
    - CVE-2012-1585

 -- Chuck Short <zulcss@ubuntu.com>  Mon, 02 Apr 2012 11:17:33 -0400

nova (2012.1~rc1-0ubuntu2) precise; urgency=low

  * debian/control: Add Breaks/Replaces to nova-consoleauth, update
    description, nova-console Recommends nova-consoleauth
  * debian/nova-console.install: Remove nova-consoleauth

 -- Adam Gandelman <adamg@canonical.com>  Thu, 22 Mar 2012 11:31:35 -0700

nova (2012.1~rc1-0ubuntu1) precise; urgency=low

  [ Adam Gandelman ]
  [Chuck Short]
  * New upstream release.
  * debian/patches/libvirt-use-console-pipe.patch: Refreshed

  [Adam Gandelman]
  * debian/patches/libvirt-console.patch: Refresh
  * debian/control: Split nova-consoleauth from nova-console into its own pkg
    (LP: #959289)
  * debian/nova-console.upstart.in: Specify shell

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 20 Mar 2012 11:06:11 -0400

nova (2012.1~rc1~20120316.13416-0ubuntu1) precise; urgency=low

  [Adam Gandelman]
  * New upstream release.
  * debian/patches/libvirt-conosle-patch: Refresh
  * debian/control: Fix descriptions of nova-{doc, cert} (LP: #942541)

  [Paul Belanger]
  * debian/control: python-nova depends on openssh-client (LP: #956177)

 -- Adam Gandelman <adamg@canonical.com>  Mon, 12 Mar 2012 12:09:45 -0700

nova (2012.1~rc1~20120309.13261-0ubuntu1) precise; urgency=low

  [ Chuck Short ]
  * New upstream release.
  * Refreshed libvirt-console-patch again.

  [ Adam Gandleman ]
  * debian/patches/{ec2-fixes.patch, libvirt-console-pipe.patch}: Fix and
    refresh. Add dep3 headers from original git commits.
  * debian/patches/ec2-fixes.patch: Dropped.  Merge upstream at 121537c3
  * debain/{rules, nova-docs.doc}: Docs now built in doc/build/.
  * debian/patches/libvirt-use-console-pipe.patch: Update use of
    instance['name'] instead of instance_name

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 09 Mar 2012 13:07:19 -0500

nova (2012.1~e4-0ubuntu1) precise; urgency=low

  [ Adam Gandleman ]
  * debian/patches/libvirt-use-console-pipe.patch: Refreshed.
  * debain/nova-volume.upstart.in: Ensure lock directory is created
    (LP: #940780)
  * debain/control: Fix nova-compute-$flavor Depends
  * debian/control: Add python-iso8601 to python-nova Depends

  [ Chuck Short ]
  * debian/rules: Fix FTBFS.
  * Merge Ubuntu/Debian packaging:
    - Thanks to Julien Danjou, Ghe Rivero, and Thomas Goirand
    - debian/copyright: Update copyright file.
    - debian/nova-api.init, debian/nova-compute.init,
      debian/nova-network.init, debian/nova-objectstore,
      debian/nova-scheduler, debian/nova-volume.init:
      Synchronize init scripts.
    - nova-common.install, debian/rules: Install policy.json
    - debian/rules, debian/nova-xcp-network.install,
      debian/nova-xcp-plugins.install, nova-xcp-plugins.postrm,
      debian/nova-xcp-plugins.doc, debian/nova-xcp-plugins.postinst,
      debian/README.xcp_and_openstack, debian/control,
      debian/ubuntu_xen-openvswitch-nova.rules,
      debian/patches/path-to-the-xenhost.conf-fixup.patch:
      Add Xen XCP support.
    - debian/control,
      debian/nova-compute-{kvm,lxc,qemu,xen,uml}.postinst: Make
      nova-compute a virtual package.
    - Dropped ubuntu_ubuntu_control_vars: We dont use it
  * New upstream release.
  * Dropped python-babel, it will be handled by langpacks.
  * debian/patches/ec2-fixes.patch: Backport turnk fix for ec2
    permissions.
  * debian/patches/path-to-the-xenhost.conf-fixup.patch: Refreshed.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 02 Mar 2012 11:18:35 -0500

nova (2012.1~e4~20120224.12913-0ubuntu1) precise; urgency=low

  [ Monty Taylor ]
  * Move files from nova/locale to /usr/share/locale

  [ Chuck Short ]
  * debian/rules: Fix FTBFS.
  * debian/control: Add depends on python-babel.
  * debian/control: Add depends on python-iso8601.
  * debian/nova-api-os-volume.install: Fix FTBS.
  * debian/patches/libvirt-use-console-pipe.patch: Refreshed and
    Re-enabled. (LP: #879666)
  * debian/control: Make sure we install nova-cert

  [ Joseph Heck ]
  * debian/nova-console.install: Add nova-consoleauth.
  * Add nova-api-ec2, nova-api-os-compute, and nova-api-os-volume.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 24 Feb 2012 10:08:10 -0500

nova (2012.1~e4~20120217.12709-0ubuntu1) precise; urgency=low

  [ Dave Walker (Daviey) ]
  * New upstream snapshot
  * debian/patches/temp_fix_linux_net.patch:
    - Dropped, applied upstream. LP: #929127
  * debian/patches/libvirt-use-console-pipe.patch:
    - Rebased against latest trunk

  [ Chuck Short ]
  * debian/nova.conf: Re-enable default iscsi_helper.
  * debian/nova.conf: More fixups.
  * debian/control: Dont depend and conflicts on nova-compute-
    hypervisor. (LP: #923681)
  * debian/patches/libvirt-us-console-pipe.patch: Refreshed.
  * Temporarily disable console patch. (LP: #932787)
  * New usptream version.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 17 Feb 2012 11:02:12 -0500

nova (2012.1~e4~20120210.12574-0ubuntu1) precise; urgency=low

  [Chuck Short]
  * New upstream release.
  * debian/patches/nova-manage_flagfile_location.patch:
    Refreshed patch.
  * debian/patches/libvirt-use-console-pipe.patch:
    Re-add from oneiric.
  * Dropped debian/patches/packaged-ajaxterm-calls.patch.
  * debian/control:
    - Dropped recommends on ajaxterm for nova-compute
    - Dropped nova-ajaxterm package.

  [Adam Gandleman]
  * debian/patches/temp_fix_linux_net.patch: Temporary patch until LP:
   929127 is resolved.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 10 Feb 2012 11:25:38 -0500

nova (2012.1~e4~20120208.12523-0ubuntu1) UNRELEASED; urgency=low

  [ Chuck Short ]
  * debian/patches/fix-nova-rootwraper-env.patch: Dropped
    no longer needed.
  * debian/nova-compute-{kvm,xen,uml,lxc}.conf: Add the connection
    type "--connection=libvirt" since libvirt is no longer the default.

  [ Adam Gandelman ]
  * debian/nova.conf: Define connection_type=libvirt in common nova.conf
    instead of nova-compute-*.conf until Bug #921294 is addressed.

  [ Vish Ishaya ]
   * debian/mans/nova-cert.8, debian/nova-cert.init, debian/nova-cert.install,
     debian/nova-cert.logrotate, debian/nova-cert.manpages,
     debian/nova-cert.upstart.in, debian/control, debian/source_nova.py:
     Add nova-cert.

  [ Soren Hansen ]
  * Refresh flagfile location patch.
  * Enable builds on versions of Ubuntu that do not have dh_python2.
  * Remove ajaxterm patch (upstream performed a ajaxtermectomy)
  * Replace ajax console proxy package with an empty, transitional
    package.
  * Add a nova-compute-qemu package.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 10 Feb 2012 17:41:50 +0100

nova (2012.1~e4~20120203.12454-0ubuntu1) precise; urgency=low

  [Chuck Short]
  * New upstream version.
  * debian/control: Replace m2crpto with python-crypto.
    (LP: #917851)
  * debian/*.upstart.in, debian/nova-common.postinst,
    debian/nova_sudoers: Change default shell to /bin/false.
    (LP: #890362)

  [Adam Gandleman]
  * debian/nova-common.{install, postinst}: Install policy.json on all
    Nova nodes (LP: #923817)
  * debian/rules: Remove installation of policy.json (moved to nova-common),
    point to the correct upstream git repository.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 03 Feb 2012 09:03:12 -0500

nova (2012.1~e3-0ubuntu1) precise; urgency=low

  [Chuck short]
  * New upstream release.
  * debian/patches/fix-nova-rootwraper-env.patch: Dropped
    no longer needed.
  * debian/nova-compute-{kvm,xen,uml,lxc}.conf: Add the connection
    type "--connection=libvirt" since libvirt is no longer the default.

  [Adam Gandelman]
  * debian/nova.conf: Define connection_type=libvirt in common nova.conf
    instead of nova-compute-*.conf until Bug #921294 is addressed.

  [Vish Ishaya]
   * debian/mans/nova-cert.8, debian/nova-cert.init, debian/nova-cert.install,
     debian/nova-cert.logrotate, debian/nova-cert.manpages,
     debian/nova-cert.upstart.in, debian/control, debian/source_nova.py:
     Add nova-cert.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 26 Jan 2012 10:29:13 -0500

nova (2012.1~e3~20120120.12170-0ubuntu1) precise; urgency=low

  [Chuck Short]
  * New upstream version.
  * debian/nova-vncproxy.install, debian/nova-vncproxy.upstart.in:
    nova-vncproxy becomes nova-xvpvncproxy.
  * debian/nova.conf: Really use the nova rootwrapper. (LP: #918179)
  * debian/nova_sudoers: Fix typo in rootwrap usage.
  * debian/patches/kombu_tests_timeout.patch: Skip
    "test_iterconsume_errors_will_reconnect" test.

  [Dan Prince]
  * Add policy.json to packages.

  [Thierry Carrez]
   * debian/*.pyinstall: Ship filter files in each node... (LP: #919105)
   * debian/python-nova.pyremove: ...and no longer in python-nova (LP: #919105)
   * debian/patches/fix-nova-rootwraper-env.patch: Fix temporary issue with
     nova-rootwrap and nova-compute.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 20 Jan 2012 11:54:15 -0500

nova (2012.1~e3~20120113.12049-0ubuntu1) precise; urgency=low

  [ Chuck Short ]
  * New upstream version.
  * debian/nova_sudoers, debian/nova-common.install,
    Switch out to nova-rootwrap. (LP: #681774)
  * Add "get-origsource-git" which allows developers to
    generate a tarball from github, by doing:
    fakeroot debian/rules get-orig-source-git
  * debian/debian/nova-objectstore.logrotate: Dont determine
    if we are running Debian or Ubuntu. (LP: #91379)

  [ Adam Gandleman ]
  * Removed python-nova.postinst, let dh_python2 generate instead since
    python-support is not a dependency. (LP: #907543)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 13 Jan 2012 09:51:10 +0100

nova (2012.1~e2-0ubuntu4) precise; urgency=low

  * SECURITY UPDATE: fix tenant bypass by authenticated users via OpenStack
    API (LP: #904072)
    - CVE-2012-XXXX

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 05 Jan 2012 08:58:46 -0600

nova (2012.1~e2-0ubuntu2) precise; urgency=low

  [ Chuck Short ]
  * debian/nova.conf: Fix misconfiguration.

  [ Dan Prince ]
  * debian/nova_sudoers: Fix typo
  * Add policy.json to packages.

 -- Thierry Carrez (ttx) <thierry@openstack.org>  Thu, 22 Dec 2011 16:15:22 +0100

nova (2012.1~e2-0ubuntu1) precise; urgency=low

  * New usptream release. Fixes the following bugs:
    (LP: #871278, #848643, #859679, #83199)
  * debian/nova-console.install: Fix empty package.
  * debian/patches, debian/pydist-overrides: Cleaner way
    of disabling unwanted python-dependencies.
  * debian/control:
    - Suggest python-keystone. (LP: #901881)
    - Update build dependencies.
  * debian/nova.conf: Use virtio networking by default.
    (LP: #904480)
  * debian/fix-traversal-via-image-register.patch: Dropped
    fixed upstream.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 16 Dec 2011 13:03:55 -0500

nova (2012.1~e2~20111208.11721-0ubuntu3) precise; urgency=low

  * SECURITY UPDATE: fix directory traversal during image registration via
    EC2 API and S3/RegisterImage
    - fix-traversal-via-image-register.patch: adjust nova/image/s3.py to
      use basename instead of absolute path
    - CVE-2011-4596

 -- Jamie Strandboge <jamie@ubuntu.com>  Tue, 13 Dec 2011 08:39:13 -0600

nova (2012.1~e2~20111208.11721-0ubuntu2) precise; urgency=low

  * Disable python-coverage as well.

 -- Chuck Short <zulcss@ubuntu.com>  Mon, 12 Dec 2011 10:13:04 -0500

nova (2012.1~e2~20111208.11721-0ubuntu1) precise; urgency=low

  * New upstream release.
  * debian/control:
    + Add python-suds as a dependency.
  * debian/patches: Temporarily disable python-nosexcover.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 09 Dec 2011 14:24:07 -0500

nova (2012.1~e2~20111202.11641-0ubuntu2) precise; urgency=low

  * debian/nova.conf: Remove parameter to --force_dhcp_release
    (LP: #891227)

 -- Adam Gandelman <adamg@canonical.com>  Fri, 02 Dec 2011 11:31:34 -0800

nova (2012.1~e2~20111202.11641-0ubuntu1) precise; urgency=low

  * New upstream release.
  * debian/nova_sudoers: Clean up to remove unused programs
    needed by root. (LP: #989583)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 02 Dec 2011 10:56:30 -0500

nova (2012.1~e2~20111125.11566-0ubuntu1) precise; urgency=low

  * New upstream release.
  * Refreshed debian/patches/packaged-ajaxterm-calls.patch.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 25 Nov 2011 14:02:18 -0500

nova (2012.1~e2~20111116.11495-0ubuntu1) precise; urgency=low

  * New upstream version.
  * Refreshed debian/patches/packaged-ajaxterm-calls.patch.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 18 Nov 2011 09:40:58 -0500

nova (2012.1~e1-0ubuntu3) precise; urgency=low

  * debian/rules: Take the api-paste.ini from nova/etc.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 17 Nov 2011 14:10:03 -0500

nova (2012.1~e1-0ubuntu2) precise; urgency=low

  * Revert debian/nova-manage_flagfile_location.patch: It
    was causing more problems then it should have. (LP: #891229)

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 16 Nov 2011 21:12:34 -0500

nova (2012.1~e1-0ubuntu1) precise; urgency=low

  * New upstream release.
  * debian/control: Dropped python-feedparser until MIR comes through.
  * Synced with upstream bzr packaging.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 11 Nov 2011 09:25:25 -0500

nova (2012.1~e1~20111020.11229-0ubuntu1) precise; urgency=low

  * New upstream release.
  * Dropped patches, already applied upstream:
    - debian/patches/backport-iscsitarget-choice.patch
    - debian/patches/backport-libvirt-console-pipe.patch
    - debian/patches/backport-lxc-container-console-fix.patch
    - debian/patches/backport-recreate-gateway-using-dhcp.patch
    - debian/patches/backport-snapshot-cleanup.patch
    - debian/patches/block-migration-needs-copy-backingfile.patch
    - debian/patches/fix-iscsi-target-path.patch
    - debian/patches/fix-lp838581-removed-db_pool-complexities.patch
    - debian/patches/fix-lp863305-images-permission.patch
    - debian/patches/fqdn-in-local-hostname-of-ec2-metadata.patch
    - debian/patches/use-netcat-instead-of-socat.patc
   * debian/control:
     - Add python-feedparser as a build dependency.
     - Bump standards version to 3.9.2
     - Point to the essex branch.
   * debian/patches/nova-manage_flagfile_location.patch:
     Update patch to take in account of devstack (LP: #870405)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 21 Oct 2011 14:37:26 -0400

nova (2012.1~e1~20110909.1546-0ubuntu0) UNRELEASED; urgency=low

  [ Dan Prince ]
  * Fix dnsmasq line in nova_sudoers.
  * Update ajaxterm patch to work with latest nova code.

  [ Monty Taylor ]
  * Added python-feedparser to build-deps.
  * Added branching logic to allow for building on lucid.
  * Indicate depend on pastedeploy 1.5.0, since it's required.

  [ Tushar Patil ]
  * Added iputils-arping to Depends and arping to sudoers

  [Chuck Short]
  * Merged ubuntu packaging changes:
    - debian/control: Drop socat in favor of netcat.
    - debian/nova-compute.upstart.in, debian/nova.conf:
      Move reference of nova-compute.conf from nova.conf to
      nova-compute's argv.
    - debian/nova-common.postinst: Create 'nova' group, add user to it.
    - debian/nova-common.postinst: Restrict permissions of /var/log/nova
  * Updated debian/patches/packaged-ajaxterm-calls.patch to fix FTBFS.
  * Updated debian/patches/nova-manage_flagfile_location.patch
  * debian/nova-api.install, debian/rules: Use etc/nova/api-paste.ini.
  * debian/nova_sudoers: Clean up sudoers.
  * debian/control: Add dependencies.

  [ Mark Washenberger ]
  * Add support for nova-console package.

 -- Monty Taylor <mordred@inaugust.com>  Fri, 30 Sep 2011 09:33:16 -0700

nova (2011.3-0ubuntu6.1) oneiric-proposed; urgency=low

  [Scott Moser]
  * Removed db_pool complexities from nova.db.sqlalchemy.session (LP: #838581)

  [Chuck Short]
  * debian/patches/fix-iscsi-target-path.patch: Fix ISCSI target path patch.
    (LP: #871278)
  * debian/control: Either install xen-hypervisor-4.1-amd64 or
    xen-hypervisor-4.1-i386 for nova-compute-xen. (LP: #873243)

 -- Chuck Short <zulcss@ubuntu.com>  Wed, 12 Oct 2011 14:33:25 -0400

nova (2011.3-0ubuntu6) oneiric; urgency=low

  * debian/patches/backport-libvirt-console-pipe.patch:
    - Patch updated to fix race on instance termination (LP: #868349)

 -- Robie Basak <robie.basak@ubuntu.com>  Wed, 05 Oct 2011 17:37:49 +0100

nova (2011.3-0ubuntu5) oneiric; urgency=low

  * debian/nova-common.postinst:
    - Set permissions recursively on /var/lib/nova to nova:nova for new
      installations (LP: #865169).
  * debian/patches/backport-libvirt-console-pipe.patch:
    - Patch updated to use correct patchset from upstream - incorrect version
      was uploaded in -0ubuntu4 (LP: #832507).

 -- James Page <james.page@ubuntu.com>  Tue, 04 Oct 2011 09:43:55 +0100

nova (2011.3-0ubuntu4) oneiric; urgency=low

  [James Page]
  * debian/nova-common.postinst:
    - Exclude mounted LXC rootfs filesystems within /var/lib/nova from
      user/group ownership changes (LP: #861260).
    - Ensure that primary group for 'nova' user is 'nova' so that files
      created by this user have the correct group ownership.

  [Adam Gandelman]
  * debian/nova-common.postinst: Restrict permissions of /var/log/nova
    (LP: #862816)

  [Ante Karamatic]
  * Add /usr/sbin/ietadm to sudoers (LP: #861547)
  * debian/control: Fix typo in Vcs-Bzr

  [Chuck Short]
  * debian/patches/backport-libvirt-console-pipe.patch:
    Move console.log to a ringbuffer so that the console.log
    keeps filling up. (LP: #832507)
  * debian/patches/backport-lxc-container-console-fix.patch:
    Make euca-get-console-output usable for LXC containers.
    (LP: #832159)
  * debian/patches/backport-snapshot-cleanup.patch:
    Enforce snapshot cleanup. (LP: #861582).
  * debian/patches/fix-lp863305-images-permission.patch:
    Fix image access control. (LP: #863305)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 30 Sep 2011 15:21:56 -0400

nova (2011.3-0ubuntu3) oneiric; urgency=low

  [Adam Gandelman]
  * debian/nova-common.postinst: Create 'nova' group, add user to it
    (LP: #856530)
  * debian/nova.conf, debian/nova-compute.upstart.in: Move reference of
    nova-compute.conf from nova.conf to nova-compute's argv. (LP: #839796)

  [Chuck Short]
  * debian/patches/backport-recreate-gateway-using-dhcp.patch:
    Makes sure to recreate gateway for moved ip. (LP: #859587)
  * debian/control: Update Vcs info.

  [ Scott Moser ]
  * debian/patches/fqdn-in-local-hostname-of-ec2-metadata.patch
    Make the 'local-hostname' in the EC2 Metadata service contain
    the domainname also. (LP: #854614)

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 27 Sep 2011 14:56:59 -0400

nova (2011.3-0ubuntu2) oneiric; urgency=low

  [Chuck Short]
  * debian/rules, debian/control: Use dh_python2
  * debian/control, debian/series,
    debian/patches/backport-iscsitarget-choice.patch,
    debian/nova_sudoers:
    + Change the default from iscsitarget to tgt.
  * debian/control, debian/series,
    debian/patches/use-netcat-instead-of-socat.patch,
    debian/nova_sudoers:
     + Change from socat to netcat.
  * debian/patches/block-migration-needs-copy-backingfile.patch:
    Fix block migration by needing to copy backing_file.

  [Monty Taylor]
  * Install a new paste config to enable deprecated auth.,

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 23 Sep 2011 13:34:51 -0400

nova (2011.3-0ubuntu1) oneiric; urgency=low

  [Chuck Short]
  * New upstream release.
  * debian/control, debian/nova_sudoers:
    + Add iputils-arping and add /usr/bin/apring.
  * debian/nova_sudoers: Clean up missing binaries.

  [Monty Taylor]
  * debian/control:
    + Add vlan to nova-compute

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 22 Sep 2011 09:33:49 -0400

nova (2011.3~rc~20110920.r1192-0ubuntu2) oneiric; urgency=low

  * debian/nova_sudoers:
    + Fix typo in nova_sudoers.
    + Tabs vs Spaces.
  * debian/nova.conf:
    + Use force_dhcp_release.

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 20 Sep 2011 15:44:39 -0400

nova (2011.3~rc~20110920.r1192-0ubuntu1) oneiric; urgency=low

  [Chuck Short]
  * New Upstream release.

  [ Monty Taylor ]
  * Add branching logic for building on lucid.

  [Vish Ishaya]
  * Add dnsmas-utils to nova-network dependencies
  * Add dhcp_release to sudoers.

 -- Chuck Short <zulcss@ubuntu.com>  Tue, 20 Sep 2011 10:02:04 -0400

nova (2011.3~rc~20110916.r1173-0ubuntu1) oneiric; urgency=low

  [ Chuck Short ]
  * New uptream version.
  * debian/rules: Dont fail tests.

  [ Monty Taylor ]
  * Add branching logic for building on lucid.
  * Add vlan as a depend for nova-compute.

 -- Monty Taylor <mordred@inaugust.com>  Wed, 21 Sep 2011 17:49:43 -0400

nova (2011.3~rc~20110909.r1155-0ubuntu1) oneiric; urgency=low

  * New upstream version.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 09 Sep 2011 15:09:02 -0400

nova (2011.3~rc~20110901.1523-0ubuntu1) oneiric; urgency=low

  [ Chuck Short ]
  * Really remove python-ipy.
  * New upstream release.
  * Use "--use_deprecated_auth" by default because we dont support
    kestone yet. (LP: #838768)

  [ James E. Blair ]
  * Add python-unittest2 as a build dep.

  [ Dave Walker (Daviey) ]
  * debian/control: Added python-kombu as a build and run depends.
    - LP: #798876

  [ Scott Moser ]
  * add dependency on qemu-kvm to nova-compute (LP: #833530)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 02 Sep 2011 13:21:22 -0400

nova (2011.3~d4-0ubuntu1) oneiric; urgency=low

  [Chuck Short]
  * New upstream release.

  [Thierry Carrez]
  * No longer run nova-objectstore as root (LP: #820968)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 26 Aug 2011 13:31:14 -0400

nova (2011.3~d4~20110812.1417-0ubuntu1) oneiric; urgency=low

  [Chuck Short]
  * New upstream version
  * Dont respawn the upstart jobs if nova is failing.
  * Remove python-ipy.

  [ Dan Prince ]
  * Updated the ajaxterm patch to work with latest nova code (privsep)
  * Added python-lxml to python-nova build-deps.

  [ Thomas Goirand ]
  * Add copyright info for ipv6 class for boto.

  [ Soren Hansen ]
  * Add parted to sudoers file.
  * Add Depends: python-simplejson and Conflicts: python-cjson due to
    bug #800465 which caused the test suite to fail.
  * Remove nova-instancemonitor package (dropped upstream).
  * Remove twisted dependency (dropped upstream).
  * Create nova-compute-{kvm,lxc,uml,xen} packages that pull in the
    right packages and configures nova to use the hypervisor in
    question.

  [ Thierry Carrez (ttx) ]
  * Added python-xattr to build deps, apprently this is now needed
  * Removed python-xattr from build deps, now that python-glance properly
    depends on it
  * Added radvd to nova_sudoers file (LP: #758072)
  * Make nova.conf non-world-readable, as it may contain DB passwords
    (LP: #798878)

  [ Brian Waldon ]
  * Remove nova-instancemonitor man page stub.
  * Remove nova-instancemonitor from apport hook.

  [ Monty Taylor ]
  * Added python-lxml to build-deps.

  [ Scott Moser ]
  * use trailing '/' on all usages of chown to support the case where
    the directory is a symlink

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 12 Aug 2011 03:12:38 -0400

nova (2011.3~d1-0ubuntu1) oneiric; urgency=low

  [Chuck Short]
  * New upstream version.

  [Soren Hansen]
  * libvirt plugin was refactored. Adjust ajaxterm patch accordingly.
  * Add /sbin/brctl to sudoers (it moved from /usr/sbin to /sbin in
    Oneiric).
  * Add dependencies on dnsmasq-base and bridge-utils to nova-network.
    (LP: #790661)

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 02 Jun 2011 09:30:39 -0400

nova (2011.3~bzr1108-0ubuntu1) oneiric; urgency=low

  [ Thomas Goirand ]
  * Removes embedded jquery.js from nova-doc package.
  * Added some manpages stubs to make package lintian clean.
  * Adds a nova-volume.default where the admin can decide what VG to use.
  * debian/nova-objectstore.logrotate working in Debian.
  * Do not have debian/*.upstart files in Debian. Using debian/*.upstart.in
  and copying them as .upstart only if building in Ubuntu.
  * Nova init files reviewed so that they are working in Debian.
  * Initscripts of nova-compute now has a Should-Start: libvirt-bin
  * nova-compute.postinst working with libvirt group in Debian.
  * Reviewed the package descriptions.
  * Reviewed some dependencies in debian/control (added some adduser and
  lsb-base depends).
  * Added missing binary Depends: (nova-manage must depends on
  python-amqplib unless failing puiparts tests, nova-compute is pretty
  usless without qemu-utils)
  * Removes .gitignore files from binaries.
  * Don't package nova-manage.1 man page if we aren't building docs.
  * Packages correctly: nova-manage.1 and not novamanage.1 !!!

  [ Soren Hansen ]
  * Bump required version of libvirt-bin on Ubuntu to 0.8.8.
  * Drop the last of the AOE dependencies. iSCSI is the default
    nowadays.
  * Make the decision about the name of the libvirt group at build time
    rather than runtime. (LP: #781716)

  [ Vishvananda Ishaya ]
  * Add dd to the sudo cmd list.
  * Add a nova-vncproxy package.

 -- Soren Hansen <soren@ubuntu.com>  Wed, 25 May 2011 15:57:03 +0200

nova (2011.2-0ubuntu1) natty; urgency=low

  * New upstream release.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 15 Apr 2011 07:14:43 -0400

nova (2011.2~gamma1-0ubuntu1) natty; urgency=low

  [Chuck Short]
  * New upstream release.
  * debian/nova-doc.docs: Adjust directory to the right docs path.

  [Soren Hansen]
  * Refresh nova-manage-flags patch.
  * Adjust call to ajaxterm to work with the packaged ajaxterm instead
    of the one we ship in the tarball.
  * Remove all traces of the adminclient package. It moved to its own
    tarball. There are no known consumers, so this should not be a
    problem.
  * Remove build-dependency on python-suds again.
  * setup.py now takes care of installing the CA code, so yank those
    bits from debian/nova-common.install.
  * setup.py now places api-paste.ini correctly, so stop working around
    it.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 08 Apr 2011 10:49:10 -0400

nova (2011.2~bzr925-0ubuntu1) natty; urgency=low

  [Chuck Short]
  * New upstream release.

  [Soren Hansen]
  * Make the build fail if the test suite does. The test that used to
    fail on the buildd's has been complete rewritten. (LP: #712481)
  * Specify that we need Sphinx > 1.0 to build.
  * Remove refresh_bzr_branches target from debian/rules. It is not used
    anymore.
  * Clean up after doc builds on debian/rules clean.
  * Add a nova-ajax-console-proxy package.
  * Add Recommends: ajaxterm to nova-compute, so that nova-ajax-console-
    proxy will have something to connect to.
  * Stop depending on aoetools. iscsi is the default nowadays (and has
    been for a while).
  * Move dependency on open-iscsi from nova-volume to nova-compute.
    They're client tools, so that's where they belong.
  * Add a build-depends on python-suds.
  * Add logrote config for nova-ajax-console-proxy.
  * Add upstart job for nova-ajax-console-proxy.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 31 Mar 2011 11:25:10 -0400

nova (2011.2~bzr828-0ubuntu1) natty; urgency=low

  * New upstream version.
  * debian/control: Add python-lockfile as a build dependency.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 18 Mar 2011 09:28:17 -0400

nova (2011.2~bzr786-0ubuntu1) natty; urgency=low

  [Chuck Short]
  * New upstream version.

  [ Thierry Carrez (ttx) ]
  * nova-api.conf was renamed api-paste.ini (LP: #705453)

  [ Soren Hansen ]
  * Start on filesystem event rather than local-filesystems.
  * Weed out a *lot* of out-dated information from debian/control.
  * Create /var/lock/nova in upstart jobs and set lock_path in the
    flagfile.
  * Add dependency on python-novaclient.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 11 Mar 2011 09:41:45 -0500

nova (2011.2~bzr760-0ubuntu1) natty; urgency=low

  [Chuck Short]
  * New upstream version.
  * Fix up typos in debian/control. (LP: #721414)

  [ Thierry Carrez (ttx) ]
  * Add python-distutils-extra as build-dep (for i18n)
  * Ship .mo files in /usr/share/locale
  * Add lvdisplay to nova_sudoers, clean up dupe entries

  [ Soren Hansen ]
  * Always run "nova-manage db sync" from postinst, unless an explicit
    sql_connection has been set in nova.conf. (LP: #705758)

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 04 Mar 2011 10:19:52 -0500

nova (2011.2~bzr700-0ubuntu1) natty; urgency=low

  [ Chuck Short ]
  * New upstream version.

  [ Soren Hansen ]
  * Rely on --logdir to find and use the correct logfile.
  * Remove the postrotate magic for all but nova-objectstore. It is not
    needed anymore due to using RotatingFileHandler for logging.

  [ Thierry Carrez ]
  * Ship adminclient in a separate package.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 18 Feb 2011 09:36:22 -0500

nova (2011.2~bzr663-0ubuntu1) natty; urgency=low

  [ Chuck Short ]
  * New upstream verison.
  * Add python-paramiko to debian/control.

  [Soren Hansen]
  * Honour nocheck and nodocs in DEB_BUILD_OPTIONS.
  * Add /sbin/route to sudoers file.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 11 Feb 2011 10:27:54 -0500

nova (2011.1-0ubuntu2) natty; urgency=low

  * Dont fail unittest because of buildd problems.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 03 Feb 2011 07:26:54 -0500

nova (2011.1-0ubuntu1) natty; urgency=low

  * New upstream release.
  * Add recommends to python-mysqldb (LP: #708511)
  * Add dependency of iscsitarget to nova-volume and a sugestion to use
    sheepdog (LP: #708141)
  * Suggest radvd for those who want to try ipv6.

 -- Chuck Short <zulcss@ubuntu.com>  Thu, 03 Feb 2011 07:00:52 -0500

nova (2011.1~bzr638-0ubuntu1) natty; urgency=low

  * New upstream snapshot.

 -- Chuck Short <zulcss@ubuntu.com>  Fri, 28 Jan 2011 13:41:00 -0500

nova (2011.1~bzr597-0ubuntu1) natty; urgency=low

  [ Chuck Short ]
  * New upstream snapshot.
  * Add socat, iscsiadm, and vgs to nova_sudoers.
  * Add aoetools, open-iscsi to dependencies for nova-volume.
  * Add socat to dependencies for nova-network.
  * Add python-paste and python-pastedeploy as build dependency.
  * Add python-tempita and python-migrate as build dependency.

  [ Soren Hansen ]
  * Add dependency on sudo.
  * Add upstart jobs for everything.
  * Adjust test run for nosetests newness.
  * Quiet nova-compute's postinst script.
  * Change the dependency on sqlalchemy to ensure the C extension gets
    installed for versions of the package where that was split out.
  * Don't chgrp anything to the 'nogroup' group. The whole idea of the
    nogroup group is that it doesn't own anything, so only being a
    member of that shouldn't grant you access to anything. Making dirs
    and files owned by nogroup messes this up.
  * Update nova-manage patch.
  * Add iptables-{restore,save} to sudoers file.
  * Create a logrotate config for each daemon. Make them restart the
    service after rotation.
  * Drop python-redis dependency.
  * Change python compatibility from "2.6" to "2.6-"
  * Add launchpad page to watch file.
  * Set Python-Version control fields for python-nova.
  * Add ip6tables-{save,restore} to sudoers file. (LP: #704458)
  * Add python-glance dependency.
  * Include paste config for nova-api.
  * Initialise database on initial install.

  [ Rick Clark ]
  * Add dependency on python-cheetah
  * Added iscsi target admin tool to sudoers file.
  * Specified log for nova-objectstore.
  * Set verbose logging in nova.conf.

  [ Monty Taylor ]
  * Add dependency on python-netaddr

  [ Thierry Carrez (ttx) ]
  * Added qemu-nbd to nova_sudoers
  * Added modprobe nbd to nova-compute upstart script

 -- Thierry Carrez (ttx) <thierry@openstack.org>  Mon, 24 Jan 2011 14:32:19 +0100

nova (2011.1~bzr456-0ubuntu1) natty; urgency=low

  [ Chuck Short ]
  * New upstream snapshot.
  * debian/source_nova.py:
    Add apport hook.

  [ Soren Hansen ]
  * Removed logdir.patch. Merged upstream.
  * Drop flagfile_location.patch: Merged upstream.
  * Use new --state_path flag and weed out the many direct references to
    /var/lib/nova.
  * Leave it to upstream's 'setup.py install' to install templates.
    Remove explicit paths from nova.conf.

 -- Chuck Short <zulcss@ubuntu.com>  Mon, 13 Dec 2010 10:17:01 -0500

nova (2011.1~bzr412-0ubuntu1) natty; urgency=low

  [ Soren Hansen ]
  * New upstream snapshot.
  * Added the new tarballs page to debian/watch.
  * Clean out patch-branches (everything is upstream now).
  * Remove redis-server as a build-depends and don't start it for tests
    anymore.
  * Add missing dependency on python-webob.
  * Force a python-support run (so avoid deferring it until dpkg
    triggers run). (LP: #660428)
  * Remove build and runtime dependencies on python-tornado. It's not
    needed anymore.
  * logdir.patch: Add a --logdir option to workers so that they can all
    use the same flagfile. (lp:~soren/nova/logdir-flag)
  * Consolidate all the flagfiles into one.
  * flagfile_location.patch: Patch from upstream to ensure all workers
    have a consistent way of finding their flagfile.
    (lp:~soren/nova/unify-default-flagfile-location)
  * nova-manage_flagfile_location.patch: Make sure nova-manage uses
    /etc/nova/nova.conf by default.
  * Add build and runtime dependency on openssl. It used to be pulled in
    by python-tornado, but is actually used directly by nova.

  [ Chuck Short ]
  * debian/control:
   - Add dependency to python-rrdtool so that nova-instancemonitor
     doesnt complain about missing python modules when starting.
  * debian/nova-common.install: Add missing templates.
  * debian/nova-*.conf: Update flagfiles to handle upstream changes.
  * Dropped start-redis since we dont do redis anymore.

 -- Soren Hansen <soren@ubuntu.com>  Tue, 23 Nov 2010 11:17:09 +0100

nova (0.9.1~bzr331-0ubuntu2) maverick; urgency=low

  * Add a minimal patch to ensure a string gets returned as an
    instance's internal ID. (LP: #657053)

 -- Soren Hansen <soren@ubuntu.com>  Fri, 08 Oct 2010 23:16:58 +0200

nova (0.9.1~bzr331-0ubuntu1) maverick; urgency=low

  [ Soren Hansen ]
  * New upstream snapshot (FFe ref: LP #645936)
  * Add SQLAlchemy dependency.
  * Specify that we want sqlite and we want it in
    /var/lib/nova/nova.sqlite.
  * Move "adduser nova libvirtd" to nova-compute.postinst.
  * Add python-eventlet and python-routes dependencies.
  * Make /bin/true our error handler for init scripts.
  * Install nova-api-new as nova-api.
  * Add nova-scheduler package.
  * Add /bin/kill to sudoers.
  * Make sure nova_sudoers has the correct mode, otherwise sudo gets
    very upset.
  * Add ebtables and gawk dependencies for nwfilter stuff to work.

  [ Chuck Short ]
  * Add dependency on lvm2 for nova-volume.
  * Add lvm commands to sudoers list.

 -- Soren Hansen <soren@ubuntu.com>  Tue, 21 Sep 2010 16:36:37 +0200

nova (0.9.1~bzr265-0ubuntu1) maverick; urgency=low

  * New upstream snapshot (FFe: LP: #628027)
  * Install uml libvirt xml file.
  * Add adduser as a dependency of nova-common so that we can create a
    nova user.
  * Create a nova user on install.
  * Create a separate tmpdir for nova, so that we can limit calls to
    chmod/chown to dirs and files in that directory.
  * Add nova-network package.
  * Add a sudoers file for nova, so that we don't have to run as root
    anymore.
  * Fix all init scripts to run their respective daemons as nova.
  * Update nova-compute flag file to account for moved libvirt
    templates.
  * Make all init scripts create /var/run/nova.
  * Move all pidfiles into /var/run/nova.
  * Make all daemons create a log file in /var/log/nova.
  * Respect DEB_BUILD_OPTIONS=nocheck.
  * Add a logrotate config file.

 -- Soren Hansen <soren@ubuntu.com>  Tue, 07 Sep 2010 13:12:10 +0200

nova (0.9.1~bzr204-0ubuntu2) maverick; urgency=low

  * Make sure debian/start-redis is executable.

 -- Soren Hansen <soren@ubuntu.com>  Sat, 07 Aug 2010 11:38:30 +0200

nova (0.9.1~bzr204-0ubuntu1) maverick; urgency=low

  * First OpenStack release.

 -- Soren Hansen <soren@ubuntu.com>  Wed, 04 Aug 2010 13:27:50 +0200