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
|
cinder (2:26.0.0-2) unstable; urgency=medium
* Set export OS_OSLO_MESSAGING_RABBIT__PROCESSNAME in daemons, so they don't
clash with other OpenStack services in /dev/shm.
-- Thomas Goirand <zigo@debian.org> Thu, 10 Jul 2025 21:45:33 +0200
cinder (2:26.0.0-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Update debconf template translation
- German translation.
Thanks to Helge Kreutzmann (Closes: #1104290)
- Dutch translation.
Thanks to Frans Spiesschaert (Closes: #1104541)
-- Helge Kreutzmann <debian@helgefjell.de> Tue, 13 May 2025 18:03:43 +0200
cinder (2:26.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 02 Apr 2025 13:10:54 +0200
cinder (2:26.0.0~rc2-2) unstable; urgency=medium
* Blacklist failing unit tests:
- ISCSIVolumeDriverTestCase.test_initialize_connection
-- Thomas Goirand <zigo@debian.org> Mon, 31 Mar 2025 10:48:32 +0200
cinder (2:26.0.0~rc2-1) unstable; urgency=medium
* New upstream release.
* Drop Implements_cgroupsv2.patch merged upstream.
-- Thomas Goirand <zigo@debian.org> Mon, 31 Mar 2025 10:29:47 +0200
cinder (2:26.0.0~rc1-2) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Fri, 28 Mar 2025 14:19:50 +0100
cinder (2:26.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Thu, 20 Mar 2025 17:24:27 +0100
cinder (2:25.0.0-7) unstable; urgency=medium
* Add Implements_cgroupsv2.patch (Closes: #993311).
* Runtime depends on cgroup-tools >= 2.0.2.
-- Thomas Goirand <zigo@debian.org> Tue, 11 Feb 2025 14:23:01 +0100
cinder (2:25.0.0-6) unstable; urgency=medium
* Removed pep8 from build-depends.
-- Thomas Goirand <zigo@debian.org> Tue, 14 Jan 2025 08:36:09 +0100
cinder (2:25.0.0-5) unstable; urgency=medium
[ Mauricio Faria de Oliveira ]
* d/cinder-volume.init.in: add tgt to Required-Start instead.
-- Thomas Goirand <zigo@debian.org> Fri, 27 Dec 2024 11:56:55 +0100
cinder (2:25.0.0-4) unstable; urgency=medium
* Updated debian/po/ca.po, thanks to Carles Pina.
-- Thomas Goirand <zigo@debian.org> Fri, 27 Dec 2024 11:13:24 +0100
cinder (2:25.0.0-3) unstable; urgency=medium
* Switch to pybuild (Closes: #1090403).
-- Thomas Goirand <zigo@debian.org> Fri, 20 Dec 2024 08:19:32 +0100
cinder (2:25.0.0-2) unstable; urgency=medium
* Add fix-db-schema-migration.patch.
-- Thomas Goirand <zigo@debian.org> Wed, 20 Nov 2024 11:55:41 +0100
cinder (2:25.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 02 Oct 2024 15:46:09 +0200
cinder (2:25.0.0~rc1-3) unstable; urgency=medium
* Add Fix_type_passed_to_write_function_during_backup_restoration.patch.
-- Thomas Goirand <zigo@debian.org> Fri, 27 Sep 2024 14:47:51 +0200
cinder (2:25.0.0~rc1-2) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Fri, 20 Sep 2024 16:42:12 +0200
cinder (2:25.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* rebased remove-test_backup_s3.patch
* Deleted applied upstream patches:
- cve-2024-32498-cinder-stable-2024.1.patch
- make-package-reproducible.patch
- remove-oauth2client-from-requirements.txt.patch
-- Thomas Goirand <zigo@debian.org> Tue, 17 Sep 2024 08:26:14 +0200
cinder (2:24.0.0-8) unstable; urgency=medium
* cinder-common.config: correctly calls manage_glance_api_servers.
-- Thomas Goirand <zigo@debian.org> Wed, 24 Jul 2024 03:48:32 +0200
cinder (2:24.0.0-7) unstable; urgency=medium
* Add do-not-import-oauth2client.patch.
-- Thomas Goirand <zigo@debian.org> Tue, 23 Jul 2024 07:56:41 +0200
cinder (2:24.0.0-6) unstable; urgency=medium
* Add make-package-reproducible.patch.
-- Thomas Goirand <zigo@debian.org> Tue, 23 Jul 2024 03:07:09 +0200
cinder (2:24.0.0-5) unstable; urgency=medium
* Add remove-oauth2client-from-requirements.txt.patch.
-- Thomas Goirand <zigo@debian.org> Sun, 21 Jul 2024 17:58:01 +0200
cinder (2:24.0.0-4) unstable; urgency=high
* CVE-2024-32498: Arbitrary file access through custom QCOW2 external data.
Add upstream patch (Closes: #1074763):
- cve-2024-32498-cinder-stable-2024.1.patch
* Fix debian/cinder-common.config.in
* Build-depends on qemu-utils (needed for new tests).
-- Thomas Goirand <zigo@debian.org> Fri, 21 Jun 2024 09:15:45 +0200
cinder (2:24.0.0-3) unstable; urgency=medium
* Replaced python3-oauth2client by python3-google-auth (build-)depends.
-- Thomas Goirand <zigo@debian.org> Thu, 09 May 2024 16:23:31 +0200
cinder (2:24.0.0-2) unstable; urgency=medium
* Blacklist test_main_multiprocess that is not deterministically failing
(Closes: #1031057).
-- Thomas Goirand <zigo@debian.org> Thu, 09 May 2024 14:11:54 +0200
cinder (2:24.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Thu, 04 Apr 2024 09:03:18 +0200
cinder (2:24.0.0~rc1-1) experimental; urgency=medium
* Add close-on-exec{2,} = true in uwsgi config.
* New upstream release.
* Fixed (build-)depends for this release.
* Removed applied upstream patches: debian/patches/sqla2.0-db_*.
* Rebased: remove-test_backup_s3.patch.
* Blacklist TestObjectVersions.test_versions as object hash changed.
-- Thomas Goirand <zigo@debian.org> Mon, 18 Mar 2024 16:36:57 +0100
cinder (2:23.0.0-4) unstable; urgency=medium
* Add add-params-thin_provisioning-equal-one.patch.
* Add Fix_invalid_assert_calls.patch. (Closes: #1056233).
-- Thomas Goirand <zigo@debian.org> Mon, 04 Dec 2023 17:56:41 +0100
cinder (2:23.0.0-3) unstable; urgency=medium
* Restrict autopkgtest to Architecture: amd64, arm64.
-- Thomas Goirand <zigo@debian.org> Thu, 09 Nov 2023 10:09:42 +0100
cinder (2:23.0.0-2) unstable; urgency=medium
* Add upstream SQLAlchemy 2.x support patches:
- sqla2.0-db_Configure_check_constraint.patch
- sqla2.0-db_Dont_rely_on_branched_connections.patch
- sqla2.0-db_Dont_rely_on_branched_connections.patch.base64
- sqla2.0-db_Remove_erroneous_primary_key_definitions.patch
- sqla2.0-db_Remove_unnecessary_configure_call.patch
- sqla2.0-db_Replace_use_of_Connection.execute.patch
- sqla2.0-db_Replace_use_of_enginefacade_in_migrations.patch
- sqla2.0-db_Use_the_same_connection_throughout_test.patch
* Re-add autopkgtest.
-- Thomas Goirand <zigo@debian.org> Wed, 08 Nov 2023 14:13:18 +0100
cinder (2:23.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Cleans even better.
-- Thomas Goirand <zigo@debian.org> Thu, 05 Oct 2023 08:45:10 +0200
cinder (2:23.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed patches applied upstream:
- py3.11-test_rbd_iscsi_Make_tests_compatible_with_python.patch
- CVE-2023-2088_Reject_unsafe_delete_attachment_calls.patch
* Cleans better.
-- Thomas Goirand <zigo@debian.org> Thu, 14 Sep 2023 08:50:48 +0200
cinder (2:22.0.0-6) unstable; urgency=medium
* Cleans properly (Closes: #1044028).
-- Thomas Goirand <zigo@debian.org> Mon, 14 Aug 2023 13:32:02 +0200
cinder (2:22.0.0-5) unstable; urgency=medium
* Define export MALLOC_ARENA_MAX=1, export MALLOC_MMAP_THRESHOLD_=131072
and export MALLOC_TRIM_THRESHOLD_=262144 when starting cinder-volume and
cinder-backup (Closes: #1040778).
-- Thomas Goirand <zigo@debian.org> Fri, 11 Aug 2023 15:27:04 +0200
cinder (2:22.0.0-4) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Mon, 19 Jun 2023 13:58:44 +0200
cinder (2:22.0.0-3) experimental; urgency=medium
* CVE-2023-2088: Unauthorized volume access through deleted volume
attachments. Applied upstream patch: Reject unsafe delete attachment calls
(Closes: #1035961).
-- Thomas Goirand <zigo@debian.org> Fri, 12 May 2023 12:22:24 +0200
cinder (2:22.0.0-2) experimental; urgency=medium
* Build-depends on openstack-pkg-tools (>= 123~).
-- Thomas Goirand <zigo@debian.org> Fri, 14 Apr 2023 10:26:59 +0200
cinder (2:22.0.0-1) experimental; urgency=medium
* New upstream release.
* Rebased remove-test_backup_s3.patch.
-- Thomas Goirand <zigo@debian.org> Wed, 22 Mar 2023 13:16:11 +0100
cinder (2:22.0.0~rc1-1) experimental; urgency=medium
* New usptream release.
* Removed (build-)depends versions, satisfied in Bookworm.
* debhelper-compat = 11.
* Removed lsb-base depends.
* Fixed (build-)depends for this release.
* Standards-Version: 4.6.1.
* Update py3.11-test_rbd_iscsi_Make_tests_compatible_with_python.patch.
-- Thomas Goirand <zigo@debian.org> Wed, 08 Mar 2023 14:01:35 +0100
cinder (2:21.1.0-1) unstable; urgency=medium
* New upstream point release.
* Removed patch applied upstream:
- CVE-2022-47951_Check_VMDK_subformat_against_an_allowed_list.patch
-- Thomas Goirand <zigo@debian.org> Wed, 01 Feb 2023 08:51:30 +0100
cinder (2:21.0.0-3) unstable; urgency=high
* CVE-2022-47951: By supplying a specially created VMDK flat image which
references a specific backing file path, an authenticated user may convince
systems to return a copy of that file's contents from the server resulting
in unauthorized access to potentially sensitive data. Add upstream patch
CVE-2022-47951_Check_VMDK_subformat_against_an_allowed_list.patch
(Closes: #1029562).
-- Thomas Goirand <zigo@debian.org> Tue, 24 Jan 2023 17:19:39 +0100
cinder (2:21.0.0-2) unstable; urgency=medium
* Address broken tests in Python 3.11 (Closes: #1026591):
- Add py3.11-test_rbd_iscsi_Make_tests_compatible_with_python.patch.
- Blacklist all of BackupCephTestCase and test_hpe3par.py
Note that this really is broken tests (mocking), and not a broken Cinder.
-- Thomas Goirand <zigo@debian.org> Sun, 25 Dec 2022 18:09:41 +0100
cinder (2:21.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Oct 2022 10:18:12 +0200
cinder (2:21.0.0~rc1-3) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Fri, 23 Sep 2022 17:41:40 +0200
cinder (2:21.0.0~rc1-2) experimental; urgency=medium
* Add missing os_brick namespace when generating the config file.
-- Thomas Goirand <zigo@debian.org> Wed, 21 Sep 2022 12:32:15 +0200
cinder (2:21.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Mon, 19 Sep 2022 17:21:08 +0200
cinder (2:20.0.1-2) unstable; urgency=medium
[ Mauricio Faria de Oliveira ]
* d/cinder-volume.init.in: add tgt to Should-Start/Stop
(Closes: #1018084) (LP: #1987663)
-- Thomas Goirand <zigo@debian.org> Fri, 26 Aug 2022 10:02:52 +0200
cinder (2:20.0.1-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 04 Aug 2022 15:28:21 +0200
cinder (2:20.0.0-1) unstable; urgency=medium
* New upstream release.
* Removed autopkgtest.
-- Thomas Goirand <zigo@debian.org> Wed, 30 Mar 2022 16:23:14 +0200
cinder (2:20.0.0~rc1-2) unstable; urgency=medium
* Uploading to unstable.
* Blacklist test_delete_volume_not_found().
-- Thomas Goirand <zigo@debian.org> Fri, 25 Mar 2022 14:34:16 +0100
cinder (2:20.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed add-a-healthcheck-url.patch applied upstream.
* Use pkgos-dh_auto_test --no-py2 'cinder\.tests\.unit.*' to run tests.
* Add autopkgtest.
* Do not test volume.drivers.test_nfs*.
-- Thomas Goirand <zigo@debian.org> Mon, 14 Mar 2022 11:22:10 +0100
cinder (2:19.0.0-1) unstable; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Wed, 06 Oct 2021 16:36:46 +0200
cinder (2:19.0.0~rc1-2) unstable; urgency=medium
* Uploading to unstable.
* Fix 00_default_policy.yaml.
-- Thomas Goirand <zigo@debian.org> Wed, 29 Sep 2021 22:21:44 +0200
cinder (2:19.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Mon, 20 Sep 2021 15:57:10 +0200
cinder (2:18.0.0-2) unstable; urgency=medium
* Upload to unstable.
-- Thomas Goirand <zigo@debian.org> Mon, 16 Aug 2021 12:27:08 +0200
cinder (2:18.0.0-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Wed, 14 Apr 2021 20:49:03 +0200
cinder (2:18.0.0~rc1-1) experimental; urgency=medium
* Tune cinder-api-uwsgi.ini for performance.
* New upstream release.
* Removed (build-)depends versions when satisfied in Bullseye.
* Add do-not-use-urllib3-from-botocore.patch.
* Add remove-test_backup_s3.patch.
-- Thomas Goirand <zigo@debian.org> Fri, 26 Mar 2021 14:49:28 +0100
cinder (2:17.0.1-1) unstable; urgency=medium
* New upstream point release.
-- Thomas Goirand <zigo@debian.org> Tue, 19 Jan 2021 10:12:02 +0100
cinder (2:17.0.0-2) unstable; urgency=medium
* mv /etc/cinder/policy.json /etc/cinder/disabled.policy.json.old instead of
deleting /etc/cinder/policy.json.
-- Thomas Goirand <zigo@debian.org> Tue, 15 Dec 2020 11:24:54 +0100
cinder (2:17.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Fixed debian/watch.
* Add a debian/salsa-ci.yml.
-- Thomas Goirand <zigo@debian.org> Sat, 17 Oct 2020 11:44:15 +0200
cinder (2:17.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed fix-upstream-sheebang.patch applied upstream.
* Now using a yaml policy file in /etc/cinder/policy.d.
-- Thomas Goirand <zigo@debian.org> Mon, 28 Sep 2020 16:20:07 +0200
cinder (2:16.1.0-1) unstable; urgency=medium
* New upstream release.
* Fix min version of os-brick.
-- Thomas Goirand <zigo@debian.org> Thu, 11 Jun 2020 19:17:25 +0200
cinder (2:16.0.0-2) unstable; urgency=medium
* Add missing --namespace oslo.privsep when generating the config.
-- Thomas Goirand <zigo@debian.org> Mon, 18 May 2020 01:28:49 +0200
cinder (2:16.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 13 May 2020 16:12:40 +0200
cinder (2:16.0.0~rc3-1) unstable; urgency=medium
* Add add-a-healthcheck-url.patch.
* New upstream release.
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Sat, 09 May 2020 01:30:57 +0200
cinder (2:16.0.0~rc1-2) experimental; urgency=medium
* Switch cinder-api to uwsgi.
* Use cgroup-tools, not cgroup-bin as depends.
-- Thomas Goirand <zigo@debian.org> Sat, 25 Apr 2020 19:25:54 +0200
cinder (2:16.0.0~rc1-1) experimental; urgency=medium
* Add cgroup-bin as depends of cinder-common to allow I/O QoS.
* New upstream release.
* Fixed (build-)depends for this release.
* Move cryptsetup-bin depends to cinder-common.
* Rebase patch: fix-upstream-sheebang.patch.
-- Thomas Goirand <zigo@debian.org> Fri, 24 Apr 2020 09:02:12 +0200
cinder (2:15.0.1-2) unstable; urgency=medium
* Add cgroup-bin as depends of cinder-common to allow I/O QoS.
* Run cinder-api over uwsgi.
-- Thomas Goirand <zigo@debian.org> Fri, 24 Apr 2020 09:02:10 +0200
cinder (2:15.0.1-1) unstable; urgency=medium
* New upstream point release.
-- Thomas Goirand <zigo@debian.org> Thu, 26 Mar 2020 15:11:21 +0100
cinder (2:15.0.0-4) unstable; urgency=medium
* Allow DEFROUTE_IP search to fail.
-- Thomas Goirand <zigo@debian.org> Fri, 13 Mar 2020 11:21:04 +0100
cinder (2:15.0.0-3) unstable; urgency=medium
* Fallback to hostname -i if we can't find the my-ip otherwise.
-- Thomas Goirand <zigo@debian.org> Fri, 13 Mar 2020 10:29:38 +0100
cinder (2:15.0.0-2) unstable; urgency=medium
[ Ondřej Nový ]
* Bump Standards-Version to 4.4.1.
[ Thomas Goirand ]
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Mon, 21 Oct 2019 23:55:04 +0200
cinder (2:15.0.0-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 16 Oct 2019 17:53:11 +0200
cinder (2:15.0.0~rc1-2) experimental; urgency=medium
* Remove creation of v1 endpoint in postinst,
as it is not present in cinder anymore.
-- Michal Arbet <michal.arbet@ultimum.io> Wed, 02 Oct 2019 15:02:49 +0200
cinder (2:15.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Fixed fix-upstream-sheebang.patch.
-- Thomas Goirand <zigo@debian.org> Sat, 28 Sep 2019 01:03:42 +0200
cinder (2:14.0.0-5) unstable; urgency=medium
[ Ondřej Nový ]
* Running wrap-and-sort -bast.
* d/copyright: Bump my copyright year.
* Use debhelper-compat instead of debian/compat.
* Bump Standards-Version to 4.4.0.
[ Thomas Goirand ]
* Add missing etc/cinder/resource_filters.json.
-- Thomas Goirand <zigo@debian.org> Thu, 08 Aug 2019 15:48:44 +0200
cinder (2:14.0.0-4) unstable; urgency=medium
* Uploading to unstable.
-- Michal Arbet <michal.arbet@ultimum.io> Wed, 17 Jul 2019 15:21:33 +0200
cinder (2:14.0.0-3) experimental; urgency=medium
* d/cinder-api.postinst.in: Fix 35357 port to 5000
-- Michal Arbet <michal.arbet@ultimum.io> Tue, 07 May 2019 09:31:43 +0200
cinder (2:14.0.0-2) experimental; urgency=medium
* d/control: Bump openstack-pkg-tools to version 99
-- Michal Arbet <michal.arbet@ultimum.io> Fri, 03 May 2019 18:52:07 +0200
cinder (2:14.0.0-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 11 Apr 2019 08:59:10 +0200
cinder (2:14.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Using oslo-config-generator without the python3- prefix.
* Removed New_snapshot_clone_size_option.patch.
* Also package usr/bin/cinder-status.
-- Thomas Goirand <zigo@debian.org> Fri, 29 Mar 2019 12:55:53 +0100
cinder (2:13.0.3-1) unstable; urgency=medium
* New upstream version
* Remove upstream aplied patch
- Stop_masking_IOError_different_than_ENOSPC.patch
-- Michal Arbet <michal.arbet@ultimum.io> Tue, 26 Feb 2019 11:30:22 +0100
cinder (2:13.0.2-3) unstable; urgency=medium
* Update fix-python3-compatibility-ceph.patch
* Add ceph-common to recommends
-- Michal Arbet <michal.arbet@ultimum.io> Tue, 26 Feb 2019 10:42:13 +0100
cinder (2:13.0.2-2) unstable; urgency=medium
* Remove fix-qnap-unit-tests.patch
* Add fix-python3-compatibility-ceph.patch
-- Michal Arbet <michal.arbet@ultimum.io> Wed, 06 Feb 2019 17:12:28 +0100
cinder (2:13.0.2-1) unstable; urgency=medium
[ Thomas Goirand ]
* Fix previous entry's typo that wrongly closed the bug.
* New upstream release.
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces.
-- Thomas Goirand <zigo@debian.org> Thu, 17 Jan 2019 12:45:34 +0100
cinder (2:13.0.1-5) unstable; urgency=medium
* Check if /bin/ip is executable before using it in config script for
autodetecting the value of my_ip (Clsoes: #914779).
-- Thomas Goirand <zigo@debian.org> Tue, 27 Nov 2018 14:05:07 +0100
cinder (2:13.0.1-4) unstable; urgency=medium
* Add New_snapshot_clone_size_option.patch.
-- Thomas Goirand <zigo@debian.org> Thu, 22 Nov 2018 14:37:58 +0100
cinder (2:13.0.1-3) unstable; urgency=medium
* Add Stop_masking_IOError_different_than_ENOSPC.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 19 Nov 2018 11:53:39 +0100
cinder (2:13.0.1-2) unstable; urgency=medium
* Rebuild with newer openstack-pkg-tools 89
-- Michal Arbet <michal.arbet@ultimum.io> Mon, 12 Nov 2018 23:07:27 +0100
cinder (2:13.0.1-1) unstable; urgency=medium
[ Michal Arbet ]
* New upstream version
* d/cinder-common.config.in:
* d/cinder-common.postinst.in:
* d/cinder-common.templates.in:
- Handle glance_api_servers via debconf (Closes: #912992)
- Handle my_ip via debconf (Closes: #912991)
* Fix volume_group name in config (Closes: #912987)
* d/cinder-common.postrm.in:
- Fix deletion of policy.json (Closes: #912984)
* d/rules: Make auth_strategy default to keystone
* d/copyright: Add me to copyright file
* d/control: Add me to uploaders field
-- Michal Arbet <michal.arbet@ultimum.io> Tue, 06 Nov 2018 13:57:47 +0100
cinder (2:13.0.0-2) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Wed, 05 Sep 2018 13:53:41 +0200
cinder (2:13.0.0-1) experimental; urgency=medium
[ Thomas Goirand ]
* Better init script descriptions.
* New upstream release.
* Fixed (build-)depends for this release.
[ Ondřej Nový ]
* d/control: Use team+openstack@tracker.debian.org as maintainer
* d/changelog: Remove trailing whitespaces
* Removed patches applied upstream:
- Fix_python_version_check.patch
- fix-sqlite3-migration-tests.patch
- fix-netapp-unit-tests.patch
- disable-unit-tests-bug-1715915.patch
- fix-inspur-instorage-unit-tests.patch
- fix-dell-emc-unit-tests.patch
- fix-hpe3parfcdriver-unit-tests.patch
- fix-rbd-driver-for-python3.patch
-- Thomas Goirand <zigo@debian.org> Fri, 15 Jun 2018 11:56:27 +0200
cinder (2:12.0.1-1) unstable; urgency=medium
[ Michal Arbet ]
* New upstream version
* Add some deletion of files to dh_clean
* Add fix-sqlite3-migration-tests.patch
* Allow run all tests
* Add fix-netapp-unit-tests.patch
* Add fix-qnap-unit-tests.patch
* Add fix-dell-emc-unit-tests.patch
* Add fix-backup-validation-unit-tests.patch
* Add fix-hpe3parfcdriver-unit-tests.patch
* Add disable-unit-tests-bug-1715915.patch
[ Thomas Goirand ]
* Pipe tests to subunit2pyunit.
* Add fix-rbd-driver-for-python3.patch
-- Thomas Goirand <zigo@debian.org> Wed, 02 May 2018 12:02:25 +0200
cinder (2:12.0.0-4) UNRELEASED; urgency=medium
* Switch back to using eventlet instead of uwsgi, as it crashes
puppet-openstack when doing "openstack volume type set".
-- Thomas Goirand <zigo@debian.org> Tue, 24 Apr 2018 09:01:26 +0200
cinder (2:12.0.0-3) unstable; urgency=medium
* Using unified postrm from openstack-pkg-tools >= 74~.
-- Thomas Goirand <zigo@debian.org> Mon, 26 Mar 2018 16:21:45 +0000
cinder (2:12.0.0-2) unstable; urgency=medium
* Added thin-provisioning-tools as runtime depends for cinder-common.
-- Thomas Goirand <zigo@debian.org> Wed, 07 Mar 2018 15:56:04 +0000
cinder (2:12.0.0-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces
[ Thomas Goirand ]
* New upstream release.
* Switched to openstack-pkg-tools >= 70~ debconf templates.
* Switched Cinder to uwsgi.
* Add Build-Profiles: <!nodoc> for the -doc package.
* Downgrade python3-ceph to Recommends: until Ceph Lumiuous version is
uploaded with Python 3 support.
* Also downgrade python3-hp3parclient as recommends.
-- Thomas Goirand <zigo@debian.org> Mon, 05 Mar 2018 23:01:40 +0000
cinder (2:12.0.0~rc1-2) unstable; urgency=medium
* Uploading to unstable.
* Blacklist tests failing in Stretch backport:
- test_instorage_initialize_iscsi_connection_multipath (wrong ordering).
- VMAXCommonReplicationTest.test_failover_legacy_volume (wrong IP addr).
- TestHPE3PARFCDriver.test_create_modify_host not (not deterministic).
* Call stestr directly, do not use pkgos-dh_auto_test.
-- Thomas Goirand <zigo@debian.org> Mon, 26 Feb 2018 21:13:30 +0000
cinder (2:12.0.0~rc1-1) experimental; urgency=medium
[ Ondřej Nový ]
* d/control: Set Vcs-* to salsa.debian.org
* Running wrap-and-sort -bast
[ Thomas Goirand ]
* New upstream release.
* Fixed (build-)depends for this release.
* Using pkgos-dh_auto_test.
* Generate policy.yaml using oslo-policy-generator.
* Switch package to Python 3.
* Blacklist qnap and netapp tests, as they fail in Python 3.
* Blacklist 3 other failing tests under Python 3:
- test_restore_backup_with_body_KeyError()
- test_vmax.VMAXCommonReplicationTest\.test_replicate_group()
* Standards-Version is now 4.1.3.
* Add patch for fixing some python2 sheebang to python 3.
* Fixed debian/copyright holder list and years.
-- Thomas Goirand <zigo@debian.org> Thu, 22 Feb 2018 15:37:20 +0000
cinder (2:11.0.0-7) unstable; urgency=medium
[ David Rabel ]
* Team upload.
* Remove obsolete Build-Depends: dh-systemd.
* Remove unused patches at debian/patches/
* Fix encoding in d/po/pt.po.
-- Thomas Goirand <zigo@debian.org> Sat, 10 Feb 2018 12:42:35 +0000
cinder (2:11.0.0-6) unstable; urgency=medium
* Rebuilt with openstack-pkg-tools >= 61~.
-- Thomas Goirand <zigo@debian.org> Thu, 14 Dec 2017 08:41:37 +0000
cinder (2:11.0.0-5) unstable; urgency=medium
* Rebuilt with openstack-pkg-tools >= 60~.
-- Thomas Goirand <zigo@debian.org> Wed, 13 Dec 2017 21:22:08 +0000
cinder (2:11.0.0-4) unstable; urgency=medium
* Rebuilt with openstack-pkg-tools >= 59~, to make sure we're using allocated
UID/GID from #884178.
-- Thomas Goirand <zigo@debian.org> Tue, 12 Dec 2017 23:23:24 +0000
cinder (2:11.0.0-3) unstable; urgency=medium
* Also register volumev3 / cinderv3 API endpoint.
* Rebuilt with openstack-pkg-tools >= 56.
-- Thomas Goirand <zigo@debian.org> Thu, 30 Nov 2017 14:44:16 +0100
cinder (2:11.0.0-2) unstable; urgency=medium
* Uploading to unstable.
* Updated fr.po (Closes: #875751).
* Updated pt.po (Closes: #876169).
-- Thomas Goirand <zigo@debian.org> Sat, 28 Oct 2017 10:16:42 +0000
cinder (2:11.0.0-1) experimental; urgency=medium
[ Daniel Baumann ]
* Updating vcs fields.
* Updating copyright format url.
* Updating maintainer field.
* Running wrap-and-sort -bast.
* Updating standards version to 4.0.0.
* Removing gbp.conf, not used anymore or should be specified in the
developers dotfiles.
* Correcting permissions in debian packaging files.
* Updating standards version to 4.0.1.
* Deprecating priority extra as per policy 4.0.1.
* Updating standards version to 4.1.0.
[ Thomas Goirand ]
* New upstream release.
* Fixed (build-)depends for this release.
* Removed now useless patches.
* Fixed oslo-config-generator namespaces in debian/rules.
* Wrap cinder.conf on 140 chars.
-- Thomas Goirand <zigo@debian.org> Mon, 09 Oct 2017 23:39:49 +0200
cinder (2:9.0.0-4) unstable; urgency=medium
* Team upload.
* Bump build dependency on openstack-pkg-tools (Closes: #858692).
-- David Rabel <david.rabel@noresoft.com> Sat, 01 Apr 2017 11:22:35 +0200
cinder (2:9.0.0-3) unstable; urgency=medium
* Team upload.
[ Ondřej Nový ]
* Bumped debhelper compat version to 10
[ Ondřej Kobližek ]
* Patch-out upper constraints of SQLAlchemy
* Fixed SqlAlchemy worker model (Closes: #846749)
-- Ondřej Kobližek <koblizeko@gmail.com> Mon, 19 Dec 2016 10:23:09 +0100
cinder (2:9.0.0-2) unstable; urgency=medium
* Also allows running open-iscsi using OR depends (Closes: #841452).
-- Thomas Goirand <zigo@debian.org> Fri, 21 Oct 2016 10:40:22 +0200
cinder (2:9.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Oct 2016 17:32:42 +0200
cinder (2:9.0.0~rc1-2) unstable; urgency=medium
[ Ondřej Nový ]
* d/s/options: extend-diff-ignore of .gitreview
* d/control: Use correct branch in Vcs-* fields
[ Thomas Goirand ]
* Uploading to unstable.
* Build-Depends on openstack-pkg-tools >= 53~.
* Fixed oslotest EPOCH.
* Debconf translation:
- it (Closes: #839197).
-- Thomas Goirand <zigo@debian.org> Wed, 28 Sep 2016 09:38:45 +0200
cinder (2:9.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Fixed namespace list when generating cinder.conf.
* Using OpenStack's Gerrit as VCS URLs.
* Rebased nozfs patches.
* Added PYTHONPATH=. when building sphinx doc.
* Black list 3 unit tests that non-deterministically fail:
- test_volume.VolumeMigrationTestCase.test_retype_volume_migration_failed
- test_volume.VolumeMigrationTestCase.test_retype_volume_migration_bad_policy
- backup.test_backup.BackupTestCase.test_create_backup_with_temp_snapshot
-- Thomas Goirand <zigo@debian.org> Wed, 14 Sep 2016 21:17:08 +0200
cinder (2:9.0.0~b2-2) experimental; urgency=medium
* Team upload.
* Added python-pep8 to build depends (Closes: #834275)
-- Ondřej Nový <onovy@debian.org> Sun, 14 Aug 2016 15:59:27 +0200
cinder (2:9.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Rebased remove-zfssa-from-opts.py.patch.
* Updated Danish translation of the debconf templates (Closes: #830641).
* Blacklist VolumeMigrationTestCase.test_retype_volume_driver_success.
-- Thomas Goirand <zigo@debian.org> Fri, 15 Jul 2016 16:35:01 +0200
cinder (2:9.0.0~b1+dfsg1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Refreshed patches.
* Fixed generation of cinder.conf namespace list.
* Do not use custom OSLO_PACKAGE_VERSION and build-depends on
openstack-pkg-tools 50.
-- Thomas Goirand <zigo@debian.org> Thu, 09 Jun 2016 09:31:38 +0200
cinder (2:8.0.0-4) unstable; urgency=medium
[ Thomas Goirand ]
* Updated Japanese debconf templates (Closes: #820761).
* Updated Dutch debconf templates (Closes: #822967).
* Added Brazilian Portuguese debconf templates (Closes: #824287).
[ Ondřej Nový ]
* d/copyright: Changed source URL to https protocol
-- Thomas Goirand <zigo@debian.org> Thu, 19 May 2016 10:51:12 +0200
cinder (2:8.0.0-3) unstable; urgency=medium
* Also blacklist test_create_delete_cgsnapshot which is non-deterministically
failing (Closes: #824595).
-- Thomas Goirand <zigo@debian.org> Wed, 18 May 2016 10:20:47 +0200
cinder (2:8.0.0-2) unstable; urgency=medium
[ Ondřej Nový ]
* Standards-Version is 3.9.8 now (no change)
[ Thomas Goirand ]
* Fixed endpoint creation that was buggy: it was using keystone admin auth
token which we removed for Mitaka (Closes: #820844).
-- Thomas Goirand <zigo@debian.org> Wed, 13 Apr 2016 20:21:03 +0000
cinder (2:8.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 07 Apr 2016 21:08:51 +0200
cinder (2:8.0.0~rc2-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Updated ja.po debconf translation (Closes: #816343).
* Ran debconf-updatepo.
-- Thomas Goirand <zigo@debian.org> Tue, 05 Apr 2016 10:43:20 +0200
cinder (2:8.0.0~rc1-2) experimental; urgency=medium
* Do not use Keystone admin auth token to register API endpoint.
-- Thomas Goirand <zigo@debian.org> Tue, 29 Mar 2016 12:24:55 +0000
cinder (2:8.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Disable non-deterministic failed tests:
cinder.tests.unit.test_volume.VolumeTestCase.test_create_delete_volume
* Fixed (build-)depends for this release.
* Reworked install-missing-files.patch.
* Standards-Version: 3.9.7 (no change).
-- Thomas Goirand <zigo@debian.org> Mon, 14 Mar 2016 14:10:58 +0100
cinder (2:8.0.0~b3-1) experimental; urgency=medium
[ Thomas Goirand ]
* New upstream release.
* Fixed (build-)depends for this release.
* New (build-)depends on python-oauth2client to ensure its version.
* Added missing build-depends on git, needed by sphinx-build.
* Fixed config file generation.
* Refreshed / rebased patches.
[ Ondřej Nový ]
* Fixed homepage (https).
* Fixed VCS URLs (https).
-- Thomas Goirand <zigo@debian.org> Mon, 25 Jan 2016 10:02:39 +0000
cinder (2:8.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed disable-zfs-tests.patch.
* Removed Downstream_Fix_for_Genconfig.patch.
* Added patch to remove zfssa tests.
* Added a doc-base registration file.
-- Thomas Goirand <zigo@debian.org> Mon, 07 Dec 2015 14:05:41 +0100
cinder (2:7.0.0-4) unstable; urgency=medium
* Added q-text-as-data as depends for cinder-api.
-- Thomas Goirand <zigo@debian.org> Tue, 03 Nov 2015 11:32:01 +0000
cinder (2:7.0.0-3) unstable; urgency=medium
* Using Keystone API v3 to register in the catalog.
-- Thomas Goirand <zigo@debian.org> Mon, 02 Nov 2015 18:19:42 +0000
cinder (2:7.0.0-2) unstable; urgency=medium
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Fri, 16 Oct 2015 13:44:00 +0000
cinder (2:7.0.0-1) experimental; urgency=medium
* New upstream release.
* Setup both v1 and v2 endpoints.
-- Thomas Goirand <zigo@debian.org> Thu, 15 Oct 2015 15:49:18 +0200
cinder (2:7.0.0~rc2-1) experimental; urgency=medium
* cinder-api depends on python-openstackclient.
* cinder-api also registering the volumev2 type.
* Fixed cinder.conf generation:
- Fixed the default path for lock_path.
- Added upstream patch for fixing config file generation.
- Manually set enabled_backends = lvm, and appends a [lvm] section to set
the LVM backend as default.
-- Thomas Goirand <zigo@debian.org> Tue, 29 Sep 2015 13:23:42 +0000
cinder (2:7.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Refresh patch.
-- Thomas Goirand <zigo@debian.org> Fri, 25 Sep 2015 10:01:08 +0200
cinder (2:7.0.0~b3-1) experimental; urgency=medium
* New upstream release.
* Align with MOS packaging:
- Bumped EPOCH to 2 instead of 1.
- Some Ubuntu version lower bounds for dependencies.
- Added a cinder-doc package.
* Fixed (build-)depends for this release.
* Refreshed disable-zfs-tests.patch.
-- Thomas Goirand <zigo@debian.org> Tue, 01 Sep 2015 13:56:21 +0200
cinder (1:7.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Updated (build-)depends for this release.
* Fixed OSLO_PACKAGE_VERSION for last PBR version.
* Disable zfs tests.
-- Thomas Goirand <zigo@debian.org> Fri, 10 Jul 2015 09:41:59 +0200
cinder (2015.1.0+2015.06.16.git26.9634b76ba5-3) unstable; urgency=medium
* Rebuilt for sqlalchemy 1.0.6.
-- Thomas Goirand <zigo@debian.org> Wed, 01 Jul 2015 02:21:46 +0000
cinder (2015.1.0+2015.06.16.git26.9634b76ba5-2) unstable; urgency=medium
* Fixed changelog regarding CVE number: CVE-2015-1851 and not
CVE-2015-1850 (Closes: #789349).
-- Thomas Goirand <zigo@debian.org> Sun, 21 Jun 2015 14:21:31 +0000
cinder (2015.1.0+2015.06.16.git26.9634b76ba5-1) unstable; urgency=high
* New upstream release (based on commit 26th g9634b76):
- Addresses CVE-2015-1851 / OSSA 2015-011 (Closes: #788996).
-- Thomas Goirand <zigo@debian.org> Tue, 16 Jun 2015 22:36:48 +0200
cinder (2015.1.0+2015.06.06.git24.493b6c7f12-1) unstable; urgency=medium
* New upstream release (basing on commit 24th 2015.06.06 493b6c7f12).
* Fixed debian/watch file to read from correct cinder project and not Nova.
* Fixed config file generation taking patches from upstream.
-- Thomas Goirand <zigo@debian.org> Mon, 11 May 2015 23:07:24 +0200
cinder (2015.1.0-1) unstable; urgency=medium
* New upstream release.
* Fixed gbp.conf.
-- Thomas Goirand <zigo@debian.org> Thu, 30 Apr 2015 21:33:43 +0000
cinder (2015.1~rc2-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Updated (build-)depends for this release.
* Now generates cinder.conf on the fly.
* Added Fix_borked_StorPool_driver.patch
-- Thomas Goirand <zigo@debian.org> Thu, 09 Apr 2015 23:48:10 +0200
cinder (2014.2.1-1) experimental; urgency=medium
* New upstream release.
* Now depends on openstack-pkg-tools (>= 20~) to avoid systemd issues with
previous versions.
-- Thomas Goirand <zigo@debian.org> Sun, 14 Dec 2014 08:59:02 +0000
cinder (2014.2-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 16 Oct 2014 15:23:17 +0000
cinder (2014.2~rc2-1) experimental; urgency=medium
* New upstream release.
* Updated (build-)depends for this release.
* Switching to templated init scripts using openstack-pkg-tools >= 13.
* Mangling upstream rc and beta versions in watch file.
* Now using a single cinder-common.logrotate file instead of so many.
* Standards-Version is now 3.9.6 (no change).
-- Thomas Goirand <zigo@debian.org> Sun, 05 Oct 2014 14:23:48 +0800
cinder (2014.2~rc1-1) experimental; urgency=medium
* New upstream release.
* Updated (build-)depends for this release.
* Added more lintian-override for false positive about unused debconf
templates.
-- Thomas Goirand <zigo@debian.org> Wed, 01 Oct 2014 15:43:51 +0800
cinder (2014.2~b3-2) experimental; urgency=medium
* Fixed the DB connection directive name and section.
-- Thomas Goirand <zigo@debian.org> Wed, 24 Sep 2014 18:50:02 +0800
cinder (2014.2~b3-1) experimental; urgency=medium
[ Thomas Goirand ]
* New upstream release.
* New (build-)depends for this release.
* Removes usr/bin/cinder-rpc-zmq-receiver fron cinder-common.install,
as its gone upstream (moved into Oslo, it seems).
[ gustavo panizzo ]
* Support to run cinder daemons under systemd.
-- Thomas Goirand <zigo@debian.org> Sat, 20 Sep 2014 10:15:10 +0000
cinder (2014.1.1-2) unstable; urgency=medium
* cinder-volume now depends on tgt >= 1:1.0.17-1.1~ (Closes: 751703).
-- Thomas Goirand <zigo@debian.org> Mon, 16 Jun 2014 15:37:47 +0800
cinder (2014.1.1-1) unstable; urgency=medium
* New upstream release.
* Removed fallback-to-None-on-missing-Glance-image-attrs.patch applied
upstream.
* Bumped python-six minimal requirements to 1.6.0.
-- Thomas Goirand <zigo@debian.org> Mon, 09 Jun 2014 22:08:57 +0800
cinder (2014.1-7) unstable; urgency=medium
* Now build-depends on openstack-pkg-tools >= 0.12~.
-- Thomas Goirand <zigo@debian.org> Thu, 05 Jun 2014 07:04:33 +0000
cinder (2014.1-6) unstable; urgency=medium
* Switched from restarting daemons to copytruncate in logrotate.
-- Thomas Goirand <zigo@debian.org> Thu, 29 May 2014 14:01:00 +0800
cinder (2014.1-5) unstable; urgency=medium
* Disable https for the default keystone conf, as this makes our CI fail.
-- Thomas Goirand <zigo@debian.org> Mon, 05 May 2014 13:14:58 +0800
cinder (2014.1-4) unstable; urgency=medium
* Updated intalian debconf translations (Closes: #745386).
-- Thomas Goirand <zigo@debian.org> Sat, 03 May 2014 04:06:37 +0000
cinder (2014.1-3) unstable; urgency=medium
* Now using keystone_authtoken in cinder.conf instead of api-paste.ini:
- Fixed config and postinst scripts of cinder-common to use that.
- Removed patch for api-paste.ini.
-- Thomas Goirand <zigo@debian.org> Thu, 01 May 2014 00:01:50 +0800
cinder (2014.1-2) unstable; urgency=medium
* Applied patch from Mike Perez <thingee@gmail.com> to be able to create
volume from glance image without checksum.
-- Thomas Goirand <zigo@debian.org> Sat, 26 Apr 2014 23:12:30 +0800
cinder (2014.1-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Applied patch from Sylvain Baubeau <sylvain.baubeau@enovance.com> to select
log destination (to syslog or to a file).
-- Thomas Goirand <zigo@debian.org> Wed, 09 Apr 2014 22:09:38 +0800
cinder (2014.1~rc1-1) experimental; urgency=low
* New upstream release.
* Removed now useless fix-sqlalchemy-version patch.
* Fixed new (build-)dependencies for this release.
-- Thomas Goirand <zigo@debian.org> Fri, 28 Mar 2014 18:40:20 +0800
cinder (2014.1~b3-1) experimental; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Mon, 17 Feb 2014 15:11:34 +0800
cinder (2013.2.2-2) unstable; urgency=medium
* Rebuilt using openstack-pkg-tools >= 9.
-- Thomas Goirand <zigo@debian.org> Fri, 14 Feb 2014 17:36:24 +0000
cinder (2013.2.2-1) unstable; urgency=medium
* New upstream point release.
-- Thomas Goirand <zigo@debian.org> Fri, 14 Feb 2014 11:04:50 +0800
cinder (2013.2.1-4) unstable; urgency=medium
* Added postrotate script after logrotate to restart daemons.
* Fix webob version in requirements.txt.
-- Thomas Goirand <zigo@debian.org> Mon, 03 Feb 2014 15:49:21 +0800
cinder (2013.2.1-3) unstable; urgency=medium
* Updated fr.po debconf thanks to Julien Patriarca (Closes: #733091).
* New sv.po debconf translation thanks to Martin Bagge (Closes: #734585).
-- Thomas Goirand <zigo@debian.org> Mon, 13 Jan 2014 17:27:07 +0800
cinder (2013.2.1-2) unstable; urgency=medium
* Kills the "cinder enable" debconf feature. (Closes: #732547)
* Adds a Spanish debconf translation thanks to Matias A. Bellone
<matiasbellone+debian@gmail.com> (Closes: #732535).
-- Thomas Goirand <zigo@debian.org> Thu, 19 Dec 2013 15:46:34 +0800
cinder (2013.2.1-1) unstable; urgency=medium
* New upstream release (Icehouse beta 1).
-- Thomas Goirand <zigo@debian.org> Mon, 09 Dec 2013 21:07:33 +0800
cinder (2013.2-2) unstable; urgency=medium
* Updated debconf translations with warm thanks to:
- French, Julien Patriarca <leatherface@debian.org> (Closes: #728769).
- Russian, Yuri Kozlov <yuray@komyakino.ru> (Closes: #729775).
-- Thomas Goirand <zigo@debian.org> Sun, 08 Dec 2013 11:21:20 +0800
cinder (2013.2-1) unstable; urgency=low
* New upstream release.
* Uploading to unstable.
* Fixed the path to the log files in the init scripts.
* Fixed the value of the state_path directive to /var/lib/cinder instead of
somewhere in /usr/lib/python2.x.
-- Thomas Goirand <zigo@debian.org> Thu, 17 Oct 2013 01:02:21 +0800
cinder (2013.2~rc3-1) experimental; urgency=low
* New upstream release.
* Kills the CEPH_ARGS hack in /etc/default/cinder and cinder-volume.init
since that's not needed anymore (upstream code manages this now in the
configuration file directly).
* sed -i "s/#auth_strategy=noauth/auth_strategy=keystone/" in the default
packaged cinder.conf (otherwise it doesn't work by default).
-- Thomas Goirand <zigo@debian.org> Fri, 11 Oct 2013 22:54:46 +0800
cinder (2013.2~rc1-2) experimental; urgency=low
* Updates the templates and translations to really (Closes: #708658).
-- Thomas Goirand <zigo@debian.org> Wed, 09 Oct 2013 23:32:13 +0800
cinder (2013.2~rc1-1) experimental; urgency=low
* New upstream release.
* Reviewed (build-)dependencies.
-- Thomas Goirand <zigo@debian.org> Sat, 22 Jun 2013 16:27:46 +0800
cinder (2013.1.3-1) unstable; urgency=low
* New upstream point release.
* Added several Debconf templates translations:
- Portuguese, thanks to Miguel Figueiredo (Closes: #705707).
- Italian, thanks to Beatrice Torracca (Closes: #719879).
- Czech, thanks to Michal Šimůnek (Closes: #721135).
* Removes now applied upstream patches for CVE-2013-4202 & CVE-2013-4183.
-- Thomas Goirand <zigo@debian.org> Fri, 30 Aug 2013 11:35:22 +0800
cinder (2013.1.2-4) unstable; urgency=high
* Adds missing depends: sqlite3.
* CVE-2013-4202: Fix DoS using XML entities in extensions (Closes:
* #719118).
* CVE-2013-4183: Enable zero the snapshot when delete snapshot in
LVMVolumeDriver (Closes: #719010).
-- Thomas Goirand <zigo@debian.org> Sat, 13 Jul 2013 22:51:29 +0800
cinder (2013.1.2-3) unstable; urgency=low
* Adds a patch to make it work with sqlalchemy >= 0.8 (Closes: #715431).
* Added build-depends: python-pywbem.
-- Thomas Goirand <zigo@debian.org> Wed, 10 Jul 2013 15:28:16 +0800
cinder (2013.1.2-2) unstable; urgency=low
* Starts Cinder after postgresql, mysql, keystone, rabbitmq-server and
* ntp.
* Added cinder-volume CEPH_ARGS export using what is configured in
/etc/default/cinder-volume.
* Rebuilds to use python-sqlalchemy >= 0.8.
-- Thomas Goirand <zigo@debian.org> Sat, 22 Jun 2013 16:27:46 +0800
cinder (2013.1.2-1) unstable; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Fri, 14 Jun 2013 22:55:23 +0800
cinder (2013.1.1-2) unstable; urgency=low
* Added if [ -r /usr/share/dbconfig-common/dpkg/prerm ] in the prerm.
* Ran wrap-and-sort to clean stuff.
* Added creation and chown of /var/lib/cinder/{cache,volumes} after the
removal of the -R flag when doing the chown in openstack-pkg-tools.
-- Thomas Goirand <zigo@debian.org> Thu, 23 May 2013 00:08:47 +0800
cinder (2013.1.1-1) unstable; urgency=low
* Uploading to unstable.
* New upstream release.
* Fixed /etc/sudoers.d/cinder-common
* Reviewed package descriptions by the debian-l10n-english team.
-- Thomas Goirand <zigo@debian.org> Thu, 11 Apr 2013 22:30:47 +0800
cinder (2013.1-1) experimental; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Mon, 28 Jan 2013 15:54:59 +0800
cinder (2012.2.1-1) experimental; urgency=low
[ Thomas Goirand ]
* New upstream release 2012.2.1
* Fixes wrong handling (eg: policy violation) of /etc/cinder/cinder.conf.
* Now uses pkgos_func functions for debconf and dbconfig-common handling.
* Renames /etc/sudoers.d/cinder_sudoers as /etc/sudoers.d/cinder-common.
* Debconf now users cinder/<debconf-screen-name> and not cinder-common/.
* Reviewed long and short descriptions in debian/control.
* Bumped Build-Depends-Indep: python-all to 2.6.6-3~ since we are using
dh_python2.
* Added everyone in the team as Uploaders:.
* Changed Homepage field to http://cinder.openstack.org/.
* Dependencies are now by alpha order.
* Removed useless empty cinder-volume.postrm, cinder-api.postrm,
cinder-scheduler.postinst, cinder-scheduler.postrm.
* Pre-Depends: dpkg (>= 1.15.6~) because we use xz compression.
* Asks for admin tenant, user and password with debconf, patches
api-paste.ini so it is syntaxicaly correct.
* Auto-detects a valide volume group name, and prompt the user with debconf
about it.
-- Thomas Goirand <zigo@debian.org> Sun, 02 Dec 2012 07:00:49 +0000
cinder (2012.2~rc1+git1~6b31057-1) experimental; urgency=low
* First debian release
-- Mehdi Abaakouk <sileht@sileht.net> Thu, 13 Sep 2012 15:52:06 +0200
cinder (2012.2~rc1~20120907.230-0ubuntu4) quantal; urgency=low
[Chuck Short]
* New upstream version.
* debian/cinder.conf: Fix path for cinder-rootwrap. (LP: #1045438)
* debian/control: Add python-glanceclient as a dep.
* debian/cinder-common.postinst: Fix chmod thinko.
* debian/*.upstart: Specify the configuration files.
[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 11:27:55 -0500
cinder (2012.2~f3-0ubuntu3) quantal; urgency=low
* debian/cinder.conf: Re-add sql_connection and set it to sqllite.
-- Chuck Short <zulcss@ubuntu.com> Wed, 22 Aug 2012 20:14:41 -0500
cinder (2012.2~f3-0ubuntu2) quantal; urgency=low
* debian/cinder.conf: Get rid of deprecated warnings.
(LP: #1036240)
-- Chuck Short <zulcss@ubuntu.com> Sun, 19 Aug 2012 13:36:22 -0500
cinder (2012.2~f3-0ubuntu1) quantal; urgency=low
* New upstream version.
* debian/patches/0001-Use-setuptools-git.patch: Dropped
* debian/control: Add python-glanceclient
-- Chuck Short <zulcss@ubuntu.com> Fri, 17 Aug 2012 10:18:57 -0500
cinder (2012.2~f3~20120809.102-0ubuntu2) quantal; urgency=low
* debian/cinder.conf, cinder-common.install: Use rootwrap.conf. (LP: #1036240)
* debian/control: Drop python-babel.
-- Chuck Short <zulcss@ubuntu.com> Mon, 13 Aug 2012 14:14:31 -0500
cinder (2012.2~f3~20120809.102-0ubuntu1) quantal; urgency=low
[ Adam Gandelman ]
* debian/control: Add python-setuptools dependency.
* debian/cinder-common.postinst: Fix syntax errors, fix permissions.
* debian/cinder-common.dirs: Correct, etc/nova -> etc/cinder.
* debian/{cinder_sudoers, rules, cinder-common.install}: Install proper
cinder_sudoers.
* debian/cinder-*.upstart: Close quotes, replace 'nova' references with
'cinder'.
* debian/cinder.conf: Specify correct sql_connection.
* debian/cinder-scheduler.postinst: Added. Migrate local databases only.
[ Chuck Short ]
* debian/*.upstart: Fix upstart jobs to run with right interfaces.
(LP: #1030197)
* debian/control: Drop python-babel, python-nosexcover
* debian/control: Add python-mox, pep8
* debian/rules: Re-add get-orig-source
* debian/rules: Enable testsuite.
* debian/cinder.conf: Update config file.
* debian/cinder-{api,volumes,scheduler}.manpages: Add manpages.
* New upstream version.
* debian/rules: Don't run pep8 tests
* debian/patches/0001-Use-setuptools-git.patch: Cleanup manifest
* debian/control: Add python-setuptools-git
* debian/control: Add section for python-cinder
* fix lintian warnings and errors.
* debian/cinder-common.install: Remove clear_rabbit_queues since it
will conflict with nova installed.
-- Chuck Short <zulcss@ubuntu.com> Fri, 10 Aug 2012 12:05:11 -0500
cinder (2012.2~f1~20120503.2-0ubuntu1) quantal; urgency=low
* Initial release.
-- Chuck Short <zulcss@ubuntu.com> Tue, 22 May 2012 09:57:46 -0400
|