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
|
neutron (2:17.2.1-0+deb11u1) bullseye-security; urgency=medium
* New upstream release, includes:
- CVE-2021-40085: By supplying a specially crafted extra_dhcp_opts value,
an authenticated user may add arbitrary configuration to the dnsmasq
process in order to crash the service, change parameters for other
tenants sharing the same interface, or otherwise alter that daemon's
behavior. This vulnerability may also be used to trigger a configuration
parsing buffer overflow in versions of dnsmasq prior to 2.81, which could
lead to remote code execution. All Neutron deployments are affected.
(Closes: #993398).
* d/patches: Remove upstream applied patches
-- Michal Arbet <michal.arbet@ultimum.io> Mon, 06 Sep 2021 15:55:27 +0200
neutron (2:17.1.1-6+deb11u1) bullseye; urgency=medium
-- Thomas Goirand <zigo@debian.org> Wed, 25 Aug 2021 16:53:24 +0200
neutron (2:17.1.1-6) unstable; urgency=medium
* Add fix-rootwrap-does-not-include-python-3.9.patch.
-- Thomas Goirand <zigo@debian.org> Wed, 30 Jun 2021 10:51:00 +0200
neutron (2:17.1.1-5) unstable; urgency=high
* CVE-2021-20267: Anti-spoofing bypass using Open vSwitch. Applied upstream
patch: Restrict_IPv6_NA_and_DHCPv6_IP_and_MAC_source_addresses.patch
(Closes: #985104).
-- Thomas Goirand <zigo@debian.org> Mon, 17 May 2021 20:47:34 +0200
neutron (2:17.1.1-4) unstable; urgency=medium
* Restore sanity in ml2_conf.ini / metadata_agent.ini generation (last
upload was a disaster).
-- Thomas Goirand <zigo@debian.org> Wed, 21 Apr 2021 17:26:26 +0200
neutron (2:17.1.1-3) unstable; urgency=medium
* Remove previous (wrong) fix and correctly generate metadata_agent.ini in
the /usr/share/neutron-metadata-agent/ folder of the neutron-metadata-agent
package.
-- Thomas Goirand <zigo@debian.org> Tue, 20 Apr 2021 18:59:02 +0200
neutron (2:17.1.1-2) unstable; urgency=medium
* Add missing "pkgos_write_new_conf neutron metadata_agent.ini" in the
neutron-metadata-agent.postinst.
-- Thomas Goirand <zigo@debian.org> Tue, 20 Apr 2021 17:44:05 +0200
neutron (2:17.1.1-1) unstable; urgency=medium
* Tune neutron-api-uwsgi.ini for performance.
* New upstream release.
* neutron-common: do not manage metadata_agent.ini, and let the
neutron-metadata-agent package do it. Thanks to Andreas Beckmann for the
bug report. (Closes: #987196).
-- Thomas Goirand <zigo@debian.org> Tue, 20 Apr 2021 12:31:47 +0200
neutron (2:17.1.0-2) unstable; urgency=medium
* Add Breaks: python3-neutron-fwaas (Closes: #985293).
-- Thomas Goirand <zigo@debian.org> Mon, 15 Mar 2021 21:18:42 +0100
neutron (2:17.1.0-1) unstable; urgency=medium
* New upstream point release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Sun, 31 Jan 2021 11:27:14 +0100
neutron (2:17.0.0-2) unstable; urgency=medium
* Update Floating_IP_s_for_routed_networks.patch.
* Rename policy.json instead of deleting it.
-- Thomas Goirand <zigo@debian.org> Tue, 15 Dec 2020 13:13:18 +0100
neutron (2:17.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Sat, 17 Oct 2020 12:05:19 +0200
neutron (2:17.0.0~rc2-1) experimental; urgency=medium
* New upstream release.
* Add a debian/salsa-ci.yml.
* Fixed watch file to correctly mangle upstream releases.
-- Thomas Goirand <zigo@debian.org> Fri, 09 Oct 2020 14:46:33 +0200
neutron (2:17.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Drop patch:
- flake8-legacy.patch
- Add_a_healthcheck_URL.patch (applied upstream).
* Refreshed: Floating_IP_s_for_routed_networks.patch.
* Re-ordered the generation of config files.
* Switch to yaml policy files in /etc/neutron/policy.d.
* Add a new neutron-ovn-metadata-agent package.
-- Thomas Goirand <zigo@debian.org> Tue, 29 Sep 2020 08:57:48 +0200
neutron (2:16.1.0-1) unstable; urgency=medium
* New upstream release.
* Add python3-isort build-depends.
-- Thomas Goirand <zigo@debian.org> Thu, 27 Aug 2020 11:59:36 +0200
neutron (2:16.0.0-5) unstable; urgency=medium
* Add a neutron-doc package.
-- Thomas Goirand <zigo@debian.org> Wed, 12 Aug 2020 15:46:08 +0200
neutron (2:16.0.0-4) unstable; urgency=medium
* Allow cfg.CONF.register_opts to fail in debian/neutron-plugin-manage.
-- Thomas Goirand <zigo@debian.org> Tue, 11 Aug 2020 17:13:37 +0200
neutron (2:16.0.0-3) unstable; urgency=medium
* Add a number of unit test blacklist, which are failing tests, but don't
look like a problem in Neutron code.
* Add Floating_IP_s_for_routed_networks.patch.
* Remove now useless --with systemd.
-- Thomas Goirand <zigo@debian.org> Mon, 13 Jul 2020 11:45:31 +0200
neutron (2:16.0.0-2) unstable; urgency=medium
* d/control: Add haproxy dependency for neutron-dhcp-agent
* Update pofiles
-- Michal Arbet <michal.arbet@ultimum.io> Fri, 12 Jun 2020 11:24:52 +0200
neutron (2:16.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 13 May 2020 17:35:22 +0200
neutron (2:16.0.0~rc2-4) unstable; urgency=medium
* Fixed Breaks+Replaces+Provides relation.
-- Thomas Goirand <zigo@debian.org> Wed, 13 May 2020 14:57:45 +0200
neutron (2:16.0.0~rc2-3) unstable; urgency=medium
* Updated es.po debconf translations (Closes: #958871).
* Add Provides+Breaks+Replaces python3-networking-ovn (Closes: #959863).
-- Thomas Goirand <zigo@debian.org> Mon, 11 May 2020 18:16:17 +0200
neutron (2:16.0.0~rc2-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 17:32:13 +0200
neutron (2:16.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed using-python3-not-python.patch.
* Remove after dh_install in neutron-common (TripleO stuff):
- /usr/bin/ovn_migration.sh
- usr/share/ansible/neutron-ovn-migration
-- Thomas Goirand <zigo@debian.org> Fri, 24 Apr 2020 15:58:49 +0200
neutron (2:15.0.2-1) unstable; urgency=medium
* New upstream point release.
* Blacklist test_handle_trunk_remove_trunk_manager_failure().
-- Thomas Goirand <zigo@debian.org> Thu, 26 Mar 2020 13:05:13 +0100
neutron (2:15.0.0-5) unstable; urgency=medium
* Add debian/patches/using-python3-not-python.patch.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Feb 2020 15:13:14 +0100
neutron (2:15.0.0-4) unstable; urgency=medium
* Fix the description of neutron-api in debian/neutron-api.service.in.
* Removed (build-)depends on python3-gflags: not needed.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Feb 2020 10:45:27 +0100
neutron (2:15.0.0-3) unstable; urgency=medium
* Updated nl.po debconf translations (Closes: #945028).
* Updated pt.po debconf translations (Closes: #943863).
* Updated de.po debconf translations (Closes: #943854).
-- Thomas Goirand <zigo@debian.org> Fri, 20 Dec 2019 14:09:03 +0100
neutron (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:44:23 +0200
neutron (2:15.0.0-1) experimental; urgency=medium
* Added da.po (Closes: #923130).
* Updated pt.po (Closes: #919200).
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Wed, 16 Oct 2019 16:27:00 +0200
neutron (2:15.0.0~rc1-2) experimental; urgency=medium
* Add missing haproxy depends in neutron-l3-agent.
* Add the neccessary debconf stuff to stop modifying config files on
upgrades.
-- Thomas Goirand <zigo@debian.org> Fri, 27 Sep 2019 10:53:03 +0200
neutron (2:15.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Update neutron.conf generator namespace list.
-- Thomas Goirand <zigo@debian.org> Thu, 26 Sep 2019 21:40:02 +0200
neutron (2:14.0.2-2) unstable; urgency=medium
* Removed python3-mysqldb as depends.
-- Thomas Goirand <zigo@debian.org> Sat, 20 Jul 2019 16:45:34 +0200
neutron (2:14.0.2-1) unstable; urgency=medium
* New upstream release.
* Re-enable floating ip tests.
-- Thomas Goirand <zigo@debian.org> Sat, 20 Jul 2019 16:02:36 +0200
neutron (2:14.0.1-1) unstable; urgency=medium
[ Michal Arbet ]
* New upstream release
* d/control: Bump openstack-pkg-tools to version 99
* d/copyright: Update year for my line
* Use debhelper-compat instead of debian/compat.
[ Thomas Goirand ]
* Uploading to unstable.
* Increased pyroute2 minimum version after upload of it.
* Disable all wsgi tests (we're using uwsgi anyway).
* Disable test_not_called_with_low_log_level() that is failing.
* Disable all test_floatingip_via_router_interface_returns_201 until
further investigation (see open bug upstream in launchpad at:
https://bugs.launchpad.net/neutron/+bug/1837169).
[ Ondřej Nový ]
* Use debhelper-compat instead of debian/compat.
* Bump Standards-Version to 4.4.0.
-- Thomas Goirand <zigo@debian.org> Wed, 17 Jul 2019 15:36:24 +0200
neutron (2:14.0.0-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 11 Apr 2019 10:27:12 +0200
neutron (2:14.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Removed patches:
- CVE-2019-9735_When_converting_sg_rules_to_iptables_do_not_emit_dport_if_not_supported.patch
- Join_on_explcit_relationship_paths.patch
- remove-test_start_random_port_with_ipv6.patch
- rootwrap-fix-for-neutron-fwaas.patch
* Fixed (build-)depends for this release.
* Call oslo-config-generator directly without the python3- prefix.
* Generate the policy.json file.
-- Thomas Goirand <zigo@debian.org> Thu, 28 Mar 2019 22:52:06 +0100
neutron (2:13.0.2-14) unstable; urgency=medium
* Fix setting nova auth_url in postinst (Closes: #924648).
-- Michal Arbet <michal.arbet@ultimum.io> Fri, 15 Mar 2019 13:21:50 +0100
neutron (2:13.0.2-13) unstable; urgency=high
* CVE-2019-9735: it's possible to add a security group rule for VRRP with a
dport. Apply upstream patch: When converting sg rules to iptables, do not
emit dport if not supported. (Closes: #924508).
-- Thomas Goirand <zigo@debian.org> Thu, 14 Mar 2019 00:13:45 +0100
neutron (2:13.0.2-12) unstable; urgency=medium
* Fix rootwrap patch to work against Python 3.7.
* Add Join_on_explcit_relationship_paths.patch, which adds compatibility
with SQLAlchemy >= 1.3.x (previously, adding a floating IP would fail).
-- Thomas Goirand <zigo@debian.org> Wed, 13 Mar 2019 13:49:34 +0100
neutron (2:13.0.2-10) unstable; urgency=medium
* Fix reading [nova]/auth_url in config script.
* Do not write password of [nova] credentials if input is empty.
-- Thomas Goirand <zigo@debian.org> Fri, 01 Feb 2019 09:35:46 +0100
neutron (2:13.0.2-9) unstable; urgency=medium
* Remove neutron-metadata-agent from dependencies of dhcp and l3 agents.
-- Thomas Goirand <zigo@debian.org> Thu, 31 Jan 2019 17:15:18 +0100
neutron (2:13.0.2-8) unstable; urgency=medium
* Redirect iptables calls on ovs-agent startup to /dev/null.
-- Thomas Goirand <zigo@debian.org> Thu, 24 Jan 2019 13:36:19 +0100
neutron (2:13.0.2-7) unstable; urgency=medium
* Also do the "ip6tables -t raw -L || true" trick.
-- Thomas Goirand <zigo@debian.org> Wed, 23 Jan 2019 11:09:48 +0100
neutron (2:13.0.2-6) unstable; urgency=medium
* Do not pass twice openvswitch_agent.ini as parameter to ovs-agent.
* ovs-agent: run "iptables -t raw -L || true" to initialize the driver so
that "iptables-save -t raw" works.
-- Thomas Goirand <zigo@debian.org> Fri, 18 Jan 2019 11:20:32 +0100
neutron (2:13.0.2-5) unstable; urgency=medium
* Fix /usr/bin/neutron-plugin-manage. (Closes: #918808).
-- Thomas Goirand <zigo@debian.org> Thu, 10 Jan 2019 09:38:30 +0100
neutron (2:13.0.2-4) unstable; urgency=medium
[ Thomas Goirand ]
* Do not wrongly "fix" rights of /usr/bin/neutron-plugin-manage.
* Do not manage plugin symlinks and let individual package simply ship them.
* Update Debconf templates translations, with thanks to:
- Dutch: Frans Spiesschaert <Frans.Spiesschaert@yucom.be> (Closes: #914532)
- German: Chris Leick <c.leick@vollbio.de> (Closes: #913994).
- French: Alban Vidal <alban.vidal@zordhak.fr> (Closes: #913562).
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces.
-- Thomas Goirand <zigo@debian.org> Tue, 01 Jan 2019 05:48:46 +0100
neutron (2:13.0.2-3) unstable; urgency=medium
* Fix reading config in neutron-plugin-manage
-- Michal Arbet <michal.arbet@ultimum.io> Sun, 02 Dec 2018 14:54:00 +0100
neutron (2:13.0.2-2) unstable; urgency=medium
* d/control: Bump openstack-pkg-tools to 89
-- Michal Arbet <michal.arbet@ultimum.io> Mon, 13 Nov 2018 14:01:27 +0100
neutron (2:13.0.2-1) unstable; urgency=medium
[ Michal Arbet ]
* New upstream version
* d/control:
- Add python3-requests {build-}dependencies
- Add python3-openstackclient dependency (Closes: #913428)
* d/neutron-common.postrm.in:
- Add deletion of /etc/neutron/metadata_agent.ini (Closes: #913224)
* Run wrap-and-sort -bast
* Update debconf templates
-- Michal Arbet <michal.arbet@ultimum.io> Sat, 10 Nov 2018 22:01:28 +0100
neutron (2:13.0.1-6) unstable; urgency=medium
* d/neutron-plugin-manage: Improve maintainer script.
-- Michal Arbet <michal.arbet@ultimum.io> Mon, 05 Nov 2018 12:58:40 +0100
neutron (2:13.0.1-5) unstable; urgency=medium
[ Michal Arbet ]
* Fix bug in d/neutron-openvswitch-agent.config.in
-- Michal Arbet <michal.arbet@ultimum.io> Tue, 30 Oct 2018 11:49:18 +0100
neutron (2:13.0.1-4) unstable; urgency=medium
[ Michal Arbet ]
* Recode d/neutron-plugin-enable
[ Thomas Goirand ]
* Fix version of openstack-pkg-tools to allow backports.
-- Michal Arbet <michal.arbet@ultimum.io> Mon, 29 Oct 2018 14:47:26 +0100
neutron (2:13.0.1-3) unstable; urgency=medium
[ Michal Arbet ]
* Fix d/neutron-plugin-manage to not restart if not changed
* Fix d/neutron-plugin-manage to restart if missed symlink
* d/rules:
- Add default qos to service_plugins
-- Michal Arbet <michal.arbet@ultimum.io> Fri, 26 Oct 2018 08:56:12 +0200
neutron (2:13.0.1-2) unstable; urgency=medium
[ Michal Arbet ]
* d/neutron-plugin-manage: Fix maintainer script to handle
always both symlinks and config directive
* d/neutron-plugin-manage: Improve symlinks
-- Michal Arbet <michal.arbet@ultimum.io> Thu, 25 Oct 2018 19:58:41 +0200
neutron (2:13.0.1-1) unstable; urgency=medium
[ Michal Arbet ]
* New upstream version
* d/control: Bump openstack-pkg-tools to 87
* neutron-common:
- Add functionality to dynamically load plugin configs
- Add maintainer script neutron-plugin-manage
* neutron-common:
- Add missing configuration for nova auth (Closes: #909757)
* neutron-metadata:
- Add debconf config of metadata host
* neutron-openvswitch-agent:
- Add int-overlay-ip-address debconf config
* debian/rules:
- Set some defaults in neutron.conf
- Default config is now tenant networks
- OVS with vxlan as backend
* d/control:
- Add me to uploaders field
* d/copyright:
- Add me to copyright file
-- Michal Arbet <michal.arbet@ultimum.io> Wed, 24 Oct 2018 17:51:50 +0200
neutron (2:13.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable (Closes: #906607).
-- Thomas Goirand <zigo@debian.org> Thu, 30 Aug 2018 09:16:47 +0200
neutron (2:13.0.0~rc1-1) experimental; urgency=medium
[ Thomas Goirand ]
* Fixed startup script descriptions.
* Removed dhcp and l3 netns cleanup cron jobs: these are in fact in conflict
with neutron that does it itself.
* New upstream release.
* Fixed (build-)depends for this release.
* Removed Allow_neutron-api_load_config_from_WSGI_process.patch applied
upstream.
* Blacklist 2 more unit tests related to Evenlet failure with Py3 and SSL:
- neutron.tests.unit.test_wsgi.TestWSGIServer.test_app
- neutron.tests.unit.test_wsgi.TestWSGIServer.test_disable_ssl
[ Ondřej Nový ]
* Running wrap-and-sort -bast
* d/control: Use team+openstack@tracker.debian.org as maintainer
* d/changelog: Remove trailing whitespaces
-- Thomas Goirand <zigo@debian.org> Thu, 23 Aug 2018 11:46:54 +0200
neutron (2:12.0.2-9) unstable; urgency=medium
* Removed not needed runtime depends on uwsgi-plugin-gevent-python3.
-- Thomas Goirand <zigo@debian.org> Fri, 15 Jun 2018 11:57:28 +0200
neutron (2:12.0.2-8) unstable; urgency=medium
* Fixed startup args for -api and -l3-agent.
* Disable more config tweakings.
* Update to latest version of upstream patch:
"Allow neutron-api load config from WSGI process". This implies a new
(build-)dependency on python3-gevent.
* Add Connection: close header in uwsgi config.
-- Thomas Goirand <zigo@debian.org> Tue, 05 Jun 2018 13:02:14 +0200
neutron (2:12.0.2-7) unstable; urgency=medium
* Add missin sudoers entry:
- neutron ALL = (root) NOPASSWD: /usr/bin/neutron-rootwrap-daemon \
/etc/neutron/rootwrap.conf
-- Thomas Goirand <zigo@debian.org> Mon, 04 Jun 2018 20:57:29 +0200
neutron (2:12.0.2-6) unstable; urgency=medium
* Remove parts of Allow_neutron-api_load_config_from_WSGI_process.patch, only
keep what's needed for the rpc-server, and use correct --pyargv params for
neutron-api with openstack-pkg-tools >= 81~.
* Fixed default tweakings of config file so it works with tempest.
-- Thomas Goirand <zigo@debian.org> Sun, 03 Jun 2018 22:38:28 +0200
neutron (2:12.0.2-5) unstable; urgency=medium
* Add neutron-rpc-server init script, needed if switching to uwsgi.
* Add Allow_neutron-api_load_config_from_WSGI_process.patch.
* Create new neutron-api and neutron-rpc-server packages, the neutron-server
package becomes a transition package.
* Using openstack-pkg-tools >= 80~ to handle uwsgi and ipv6.
-- Thomas Goirand <zigo@debian.org> Tue, 22 May 2018 18:15:12 +0200
neutron (2:12.0.2-4) unstable; urgency=medium
[ Thomas Goirand ]
* Switch to uwsgi so we can support SSL.
[ Michal Arbet ]
* Fix d/neutron-server.init.in
-- Thomas Goirand <zigo@debian.org> Sun, 20 May 2018 18:42:16 +0200
neutron (2:12.0.2-3) unstable; urgency=medium
* Add Type=notify in the neutron-server .service file:
- Also set min version of openstack-pkg-tools to 78~ to support that new
feature.
-- Thomas Goirand <zigo@debian.org> Mon, 14 May 2018 14:33:13 +0200
neutron (2:12.0.2-2) unstable; urgency=medium
* Add rootwrap fix for neutron-fwaas.
-- Thomas Goirand <zigo@debian.org> Mon, 14 May 2018 09:54:01 +0200
neutron (2:12.0.2-1) unstable; urgency=medium
[ Michal Arbet & Thomas Goirand]
* New upstream version
-- Thomas Goirand <zigo@debian.org> Thu, 10 May 2018 14:45:59 +0000
neutron (2:12.0.0-2) unstable; urgency=medium
* Fixed dbc postrm.
-- Thomas Goirand <zigo@debian.org> Mon, 26 Mar 2018 17:51:55 +0000
neutron (2:12.0.0-1) unstable; urgency=medium
* Switch to openstack-pkg-tools >= 70~ debconf templates.
* New upstream release.
* Upgrade db schema as per the install-guide.
-- Thomas Goirand <zigo@debian.org> Tue, 06 Mar 2018 19:36:57 +0000
neutron (2:12.0.0~rc2-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Tue, 27 Feb 2018 10:44:36 +0000
neutron (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
[ Aurelien Martin ]
* New upstream release.
* Fix (build-)depends for this release.
* Standards-Version: 4.1.3
* Drop parsable_ml2.ini.patch
* Drop build-metadata_agent.ini-reproducibly.patch applied upstream
* Switch package to python3.
[ Thomas Goirand ]
* Black list test failing in Python 3.6:
- agent.dhcp.test_agent.TestDhcpAgent.test_dhcp_agent_manager
-- Thomas Goirand <zigo@debian.org> Wed, 21 Feb 2018 21:28:28 +0000
neutron (2:11.0.1-6) unstable; urgency=medium
[ David Rabel ]
* Update fr.po (Closes: #885585)
-- Thomas Goirand <zigo@debian.org> Fri, 26 Jan 2018 09:07:36 +0100
neutron (2:11.0.1-5) unstable; urgency=medium
* Fixed lsb-base defined twice in neutron-metering-agent.
* Back to using testr directly.
* Blacklist TestWSGIServer.test_start_random_port_with_ipv6 (Closes: #883350)
* Add build-metadata_agent.ini-reproducibly.patch (Closes: #859194).
* Fixed setting-up [nova]/project_name.
-- Thomas Goirand <zigo@debian.org> Wed, 06 Dec 2017 17:53:05 +0100
neutron (2:11.0.1-4) unstable; urgency=medium
* Using openstack-pkg-tools >= 56~ to setup transport_url correctly.
* Patch config to make it parsable.
-- Thomas Goirand <zigo@debian.org> Fri, 01 Dec 2017 15:27:28 +0000
neutron (2:11.0.1-3) unstable; urgency=medium
* Added python-pip as runtime dependency, needed for ovs plugin.
-- Thomas Goirand <zigo@debian.org> Wed, 29 Nov 2017 20:30:04 +0100
neutron (2:11.0.1-2) unstable; urgency=medium
* Removed transition packages and Breaks:/Replaces: now obsolete after the
release of Stretch.
* Added radvd runtime depends for l3-agent (Closes: #858565).
* Reviewed a bit dependencies.
* Fix unit test listing issue with new flake8, huge thanks to James Page for
providing the patch.
* Failed tests fails the build.
-- Thomas Goirand <zigo@debian.org> Thu, 26 Oct 2017 03:24:22 +0000
neutron (2:11.0.1-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.
* Updating standards version to 4.1.0.
[ Thomas Goirand ]
* New upstream release.
* Fixed (build-)depends for this release.
* Remove obsolete patches.
* Fixed config file generation namespaces.
* Removed build-depends on dh-systemd.
* Standards-Version is now 4.1.1.
* debian/rules: Removed things defined in openstack-pkg-tools.
-- Thomas Goirand <zigo@debian.org> Wed, 11 Oct 2017 15:30:23 +0200
neutron (2:9.1.1-3) unstable; urgency=medium
* Dutch translation of debconf messages (Closes: #841651).
-- Thomas Goirand <zigo@debian.org> Mon, 03 Apr 2017 18:11:13 +0200
neutron (2:9.1.1-2) unstable; urgency=medium
* Team upload.
* Bump build dependency on openstack-pkg-tools (Closes: #858706).
-- David Rabel <david.rabel@noresoft.com> Sat, 01 Apr 2017 11:57:49 +0200
neutron (2:9.1.1-1) unstable; urgency=medium
[ Ondřej Nový ]
* Bumped debhelper compat version to 10
[ Thomas Goirand ]
* New upstream release.
* Add patch to allow SQLAlchemy 1.1.x.
-- Thomas Goirand <zigo@debian.org> Sat, 03 Dec 2016 18:16:52 +0100
neutron (2:9.0.0-5) unstable; urgency=medium
* Allow unit tests to fail, as there's some non-deterministic path when
creating the db tables (Closes: #841906).
-- Thomas Goirand <zigo@debian.org> Mon, 31 Oct 2016 09:47:46 +0100
neutron (2:9.0.0-4) unstable; urgency=medium
* Fixed path of ml2_conf.ini in debian/neutron-linuxbridge-agent.init.in.
* Correctly runtime depends: on lsb-base.
-- Thomas Goirand <zigo@debian.org> Mon, 17 Oct 2016 11:13:41 +0200
neutron (2:9.0.0-3) unstable; urgency=medium
* Add a [designate] configuration example (Closes: #831697).
-- Thomas Goirand <zigo@debian.org> Mon, 10 Oct 2016 16:12:34 +0200
neutron (2:9.0.0-2) unstable; urgency=medium
* Debconf translation:
- pt (Closes: #840059).
-- Thomas Goirand <zigo@debian.org> Mon, 10 Oct 2016 13:36:10 +0200
neutron (2:9.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Oct 2016 18:12:16 +0200
neutron (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.
* Added a new neutron-macvtap-agent package.
* Fixed oslo-config-gnenerator namespaces for a number of config file.
* Debconf translation:
- it (Closes: #838501).
-- Thomas Goirand <zigo@debian.org> Wed, 28 Sep 2016 10:01:19 +0200
neutron (2:9.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Using OpenStack's Gerrit as VCS URLs.
* Rebased fix-requirements.txt.patch.
* Re-enabled tests.
* Add flake8-legacy.patch (idea taken from Ubuntu).
-- Thomas Goirand <zigo@debian.org> Fri, 16 Sep 2016 20:14:17 +0200
neutron (2:9.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Activates qos policies by default.
* neutron-server loads fwaas_driver.ini if it is present in /etc/neutron.
* Refresh the core_plugin selection logic so it's up-to-date.
* Updated Danish translation of debconf templates (Closes: #830637).
-- Thomas Goirand <zigo@debian.org> Fri, 15 Jul 2016 15:17:21 +0200
neutron (2:9.0.0~b1-1) experimental; urgency=medium
* New upstream release.
* Fix neutron-metadata server templates.
* Fixed (build-)depends for this release.
* Drop Return_oslo_config_Opts_to_config_generator.patch applied upstream.
* Added fix-requirements.txt.patch.
* Disable auto_clean as it requires a higher version of setuptools, which
isn't in the sbuild host for Jessie.
* Using ostestr directly, not using ./run_tests.sh anymore.
-- Thomas Goirand <zigo@debian.org> Thu, 09 Jun 2016 00:59:14 +0200
neutron (2:8.0.0-2) unstable; urgency=medium
[ Ondřej Nový ]
* Standards-Version is 3.9.8 now (no change)
* d/copyright: Changed source URL to https protocol
[ Thomas Goirand ]
* Updated Portuguese translation for debconf messages (Closes: #821050).
* Updated Dutch translation for debconf messages (Closes: #822965).
-- Thomas Goirand <zigo@debian.org> Thu, 19 May 2016 11:22:30 +0200
neutron (2:8.0.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 07 Apr 2016 18:29:42 +0200
neutron (2:8.0.0~rc3-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Fixed (build-)depends for this release.
* Added missing copyright holders (Closes: #816208).
* Failed tests fails the build.
-- Thomas Goirand <zigo@debian.org> Tue, 05 Apr 2016 10:07:40 +0200
neutron (2:8.0.0~rc1-2) experimental; urgency=medium
* Do not use Keystone admin auth token to register API endpoints.
-- Thomas Goirand <zigo@debian.org> Tue, 29 Mar 2016 13:50:43 +0000
neutron (2:8.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed ryu version to 3.30, since I could upload it to Experimental after
current maintainer agreed with team maintenance.
* Added missing runtime depends: q-text-as-data.
* Rebuild with newer oslo.config.
* Added Return_oslo_config_Opts_to_config_generator.patch to avoid warnings.
* Standards-Version: 3.9.7 (no change).
* Ran debconf-updatepo.
-- Thomas Goirand <zigo@debian.org> Mon, 21 Mar 2016 14:46:45 +0100
neutron (2:8.0.0~b3-1) experimental; urgency=medium
[ Ondřej Nový ]
* Fixed VCS URLs (https).
[ Thomas Goirand ]
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Thu, 03 Mar 2016 20:40:19 +0800
neutron (2:8.0.0~b2-4) experimental; urgency=medium
[ Thomas Goirand ]
* Added a neutron-sriov-agent package.
* Added Ivan in the upload list.
[ Ivan Udovichenko]
* d/neutron-openvswitch-agent.upstart.in: Remove legacy custom Upstart script.
* d/neutron-linuxbridge-agent.init.in d/neutron-openvswitch-agent.init.in:
Add custom ML2 config files instead of the default one (LP: #1527005).
-- Thomas Goirand <zigo@debian.org> Fri, 26 Feb 2016 14:15:35 +0000
neutron (2:8.0.0~b2-3) experimental; urgency=medium
* Bumped EPOCH to align with Ubuntu.
* Allow unit test to fail, because they do in Trusty.
* Do not -X/usr/bin when calling dh_install.
* Fixed auth_protocol to be http and not https by default.
* Drop Provides: argparse (Closes: #810728).
* neutron-linuxbridge-agent Breaks + Replaes older neutron-common
(Closes: #813068).
* New pt_BR.po debconf translation (Closes: #811530).
-- Thomas Goirand <zigo@debian.org> Thu, 28 Jan 2016 07:34:12 +0000
neutron (1:8.0.0~b2-2) experimental; urgency=medium
* Fixed config file generation.
-- Thomas Goirand <zigo@debian.org> Thu, 21 Jan 2016 15:23:22 +0000
neutron (1:8.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depeneds for this release.
* Rebased better-config-defaults.patch.
* Added extend-diff-ignore = "^[^/]*[.]egg-info/" in d/source/options.
* Did some cleanups in debian/rules.
* Using oslo-config-generator to generate config files, as upstream moved to
use that as well.
* export OSLO_PACKAGE_VERSION now compatible with Trusty version of dpkg.
* Fixed debian/copyright.
* Fixed too long lines in long description.
* Removed all shlibs:Depends from debian/control.
* Removed neutron-common.links (for symlink to /var/lib/quantum).
* Fails build on unit test failures.
-- Thomas Goirand <zigo@debian.org> Fri, 04 Dec 2015 09:03:42 +0100
neutron (1:7.0.0-2) unstable; urgency=medium
* Delete openvswitch_agent.ini on purge (Closes: #802538).
-- Thomas Goirand <zigo@debian.org> Fri, 23 Oct 2015 12:25:25 +0200
neutron (1:7.0.0-1) unstable; urgency=medium
* New upstream release.
* Uploading to unstable.
* Added python-pymysql as runtime dependency.
-- Thomas Goirand <zigo@debian.org> Tue, 13 Oct 2015 15:05:52 +0200
neutron (1:7.0.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Rebased patches.
* Now neutron-server depends on python-openstackclient.
-- Thomas Goirand <zigo@debian.org> Fri, 25 Sep 2015 09:37:11 +0200
neutron (1:7.0.0~b3-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Rebased better-config-defaults.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 07 Sep 2015 11:51:13 +0200
neutron (1:7.0.0~b2-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
-- Thomas Goirand <zigo@debian.org> Thu, 16 Jul 2015 15:06:54 +0200
neutron (2015.1.0+2015.06.24.git61.bdf194a0e1-3) unstable; urgency=medium
* Added requirements.txt patch for SQLA version.
-- Thomas Goirand <zigo@debian.org> Wed, 01 Jul 2015 03:02:58 +0000
neutron (2015.1.0+2015.06.24.git61.bdf194a0e1-2) unstable; urgency=medium
* Rebuilt for sqlalchemy 1.0.6.
-- Thomas Goirand <zigo@debian.org> Wed, 01 Jul 2015 02:14:01 +0000
neutron (2015.1.0+2015.06.24.git61.bdf194a0e1-1) unstable; urgency=medium
* New upstream release (based on commit 61 and sha bdf194a0e1).
* Added patch for CVE-2015-3221 (Closes: #789713):
CVE-2015-3221_Provide_work_around_for_0.0.0.0_for_ipset.patch
-- Thomas Goirand <zigo@debian.org> Wed, 24 Jun 2015 07:41:07 +0000
neutron (2015.1.0-4) unstable; urgency=medium
* Updated Danish da.po debconf translation (Closes: #787375).
-- Thomas Goirand <zigo@debian.org> Sun, 14 Jun 2015 15:58:35 +0200
neutron (2015.1.0-3) unstable; urgency=medium
* Updated pt.po translation of debconf messages (Closes: #784589).
* Updated fr.po thanks to Julien Patriarca (Closes: #785226).
-- Thomas Goirand <zigo@debian.org> Tue, 12 May 2015 23:21:01 +0200
neutron (2015.1.0-2) unstable; urgency=medium
[ gustavo panizzo ]
* Fix a problem with openvswitch-agent where it's config file was not being
loaded.
[ Thomas Goirand ]
* Added Gustavo Panizzo <gfa@zumbi.com.ar> as uploaders.
-- Thomas Goirand <zigo@debian.org> Wed, 06 May 2015 07:57:24 +0000
neutron (2015.1.0-1) unstable; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 30 Apr 2015 21:54:26 +0000
neutron (2015.1~rc2-1) unstable; urgency=medium
[ Thomas Goirand ]
* New upstream release.
* Updated (build-)depends for this release.
* Removed quantum transition packages, and lbass package (the later is now a
separated project).
[ gustavo panizzo ]
* Updated ovs agent and lb agent init scripts, since they are deprecated as
core_plugin and should be used in conjunction of ml2.
-- Thomas Goirand <zigo@debian.org> Wed, 24 Dec 2014 15:10:00 +0800
neutron (2014.2.1-1) experimental; urgency=medium
* New upstream release.
* cve-2014-7821_DoS_through_invalid_DNS_configuration_juno.patch is now
applied upstream, so removed it.
* Now build-depends on openstack-pkg-tools (>= 20~).
-- Thomas Goirand <zigo@debian.org> Fri, 12 Dec 2014 23:02:10 +0800
neutron (2014.2-4) experimental; urgency=medium
* CVE-2014-7821: DoS through invalid DNS configuration. Applied upstream
patch: Fix hostname regex pattern (Closes: #770431).
-- Thomas Goirand <zigo@debian.org> Fri, 21 Nov 2014 16:39:03 +0800
neutron (2014.2-3) experimental; urgency=medium
* Patches the ml2 plugin ini file to be like the install-guide by default.
* Added defaults-closer-to-install-guide.patch to have l3 and dhcp init files
match what the install-guide proposes as configuration.
-- Thomas Goirand <zigo@debian.org> Thu, 23 Oct 2014 14:59:07 +0800
neutron (2014.2-2) experimental; urgency=medium
* Removed arping from depends of python-neutron, and put iputils-arping as
Recommends:.
-- Thomas Goirand <zigo@debian.org> Thu, 16 Oct 2014 15:17:02 +0000
neutron (2014.2-1) experimental; urgency=medium
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 16 Oct 2014 14:52:35 +0000
neutron (2014.2~rc2-1) experimental; urgency=medium
* New upstream release.
* Updated (build-)depends for this release.
* Added ipset, iproute2, arping and keepalived as dependency.
* Now using a single logrotate file in neutron-common.
-- Thomas Goirand <zigo@debian.org> Fri, 10 Oct 2014 23:11:10 +0800
neutron (2014.2~rc1-3) experimental; urgency=medium
* Fixed debconf template and ran debconf-updatepo.
* Another fix for the SQLite Alembic migrations.
-- Thomas Goirand <zigo@debian.org> Fri, 10 Oct 2014 07:34:35 +0000
neutron (2014.2~rc1-2) experimental; urgency=medium
* Mangling upstream rc and beta versions in watch file.
* Fixed 0001-Add-parameter-and-iptables-rules-to-protect-dnsmasq-.patch
wrong identation.
* Added sqlite3 as dependency.
* Added debian/patches/more-alembic-with-sqlite-migration-fixes.patch.
-- Thomas Goirand <zigo@debian.org> Fri, 10 Oct 2014 15:00:51 +0800
neutron (2014.2~rc1-1) experimental; urgency=medium
* New upstream release.
* Now using templated init script for sysv-rc, generated systemd unit and
upstart jobs, using openstack-pkg-tools >= 13.
* Refreshed/rebased/reworked fix-alembic-migration-with-sqlite3.patch.
* Removed reference and license for tools/rfc.sh which doesn't exist, in
debian/copyright.
* Standards-Version is now 3.9.6.
-- Thomas Goirand <zigo@debian.org> Fri, 03 Oct 2014 18:53:11 +0800
neutron (2014.2~b3-1) experimental; urgency=medium
[ Thomas Goirand ]
* Disabled ml2 config patch.
* Fixed (build-)depends for this release.
* Rebased patches.
[ gustavo panizzo ]
* New upstream release.
* Support to run neutron under systemd.
-- Thomas Goirand <zigo@debian.org> Sat, 20 Sep 2014 07:54:55 +0000
neutron (2014.1.1-1) unstable; urgency=medium
* New upstream release.
* Removed OVS_lib_defer_apply_doesn_t_handle_concurrency.patch applied
upstream.
* Removed Install_SNAT_rules_for_ipv4_only.patch applied upstream.
-- Thomas Goirand <zigo@debian.org> Mon, 09 Jun 2014 23:06:59 +0800
neutron (2014.1-8) unstable; urgency=medium
* Added sane-defaults-for-ml2_conf.ini.patch.
* Added missing dbconfig-common dependency.
* Also patches dhcp_agent.ini and dhcp_agent.ini for sane defaults.
-- Thomas Goirand <zigo@debian.org> Sat, 07 Jun 2014 17:27:55 +0800
neutron (2014.1-7) unstable; urgency=medium
* Updates the OVS_lib_defer_apply_doesn_t_handle_concurrency.patch patch
(Closes: #750415).
* Now build-depends on openstack-pkg-tools (>= 12~).
-- Thomas Goirand <zigo@debian.org> Thu, 05 Jun 2014 07:25:38 +0000
neutron (2014.1-6) unstable; urgency=high
* Adds Install_SNAT_rules_for_ipv4_only.patch. Note that without this patch,
it's possible to destroy an OpenStack cloud network, which is why I'm
putting urgency=high in this upload.
-- Thomas Goirand <zigo@debian.org> Tue, 03 Jun 2014 00:07:08 +0800
neutron (2014.1-5) unstable; urgency=medium
* Switched from restarting daemons to copytruncate for logrotate.
-- Thomas Goirand <zigo@debian.org> Thu, 29 May 2014 13:44:03 +0800
neutron (2014.1-4) unstable; urgency=medium
* Fixed linuxbridge init script.
-- Thomas Goirand <zigo@debian.org> Wed, 21 May 2014 08:37:03 +0800
neutron (2014.1-3) unstable; urgency=medium
* Added Russian Debconf translation, thanks to Yuri Kozlov
<yuray@komyakino.ru> (Closes: #746939).
-- Thomas Goirand <zigo@debian.org> Sun, 04 May 2014 14:36:24 +0800
neutron (2014.1-2) unstable; urgency=medium
* Unbreaks fr.po, thanks to Christian Perrier (Closes: #745249).
* Added it.po thanks to Beatrice Torracca (Closes: #746575).
* Added a Provides: neutron-plugin-ml2 in neutron-common (LP: #1309858).
-- Thomas Goirand <zigo@debian.org> Sat, 03 May 2014 02:22:50 +0000
neutron (2014.1-1) unstable; urgency=medium
[ Thomas Goirand ]
* New upstream pre-release.
* Uploading to unstable.
* Readded 0004-Fix-Metering-doesn-t-respect-the-l3-agent-binding.patch with
the last review from upstream.
[ Sylvain Baubeau ]
* Allow selecting log destination for Neutron daemons
-- Thomas Goirand <zigo@debian.org> Wed, 09 Apr 2014 23:46:07 +0800
neutron (2014.1~rc1-2) experimental; urgency=low
* More SQLite migration fixes for Icehouse.
* Added OVS_lib_defer_apply_doesn_t_handle_concurrency.patch
-- Thomas Goirand <zigo@debian.org> Mon, 07 Apr 2014 14:23:29 +0800
neutron (2014.1~rc1-1) experimental; urgency=medium
[ gustavo panizzo ]
* Fixes an issue using ml2 and openvswitch plugin, openvswitch agent wasn't
loading it's config file.
[ Thomas Goirand ]
* New upstream release.
* Removed SQLAlchemy version in requirements.txt patch (now useless).
-- Thomas Goirand <zigo@debian.org> Fri, 04 Apr 2014 13:29:48 +0000
neutron (2014.1~b3-1) experimental; urgency=low
* New upstream release (Icehouse beta 3).
* Fixed /var/lib/neutron/dhcp folder rights for Ubuntu.
-- Thomas Goirand <zigo@debian.org> Sat, 14 Dec 2013 00:44:19 +0800
neutron (2013.2.2-1) unstable; urgency=medium
[ gustavo panizzo <gfa@zumbi.com.ar> ]
* New upstream release.
* Patch 0003-Fix-MeteringLabel-model-to-not-clear-router-s-tenant-id-on
deletion was merged upstream. Removed from debian/patches.
[ Thomas Goirand ]
* Refreshed patches.
-- Thomas Goirand <zigo@debian.org> Fri, 14 Feb 2014 07:01:38 +0000
neutron (2013.2.1-5) unstable; urgency=medium
* Fix /var/lib/neutron and /var/lib/neutron/dhcp folder rights in
debian/neutron-common.postinst.in.
-- Thomas Goirand <zigo@debian.org> Thu, 13 Feb 2014 19:43:22 +0800
neutron (2013.2.1-4) unstable; urgency=medium
* Restart daemons after logrotate.
-- Thomas Goirand <zigo@debian.org> Mon, 03 Feb 2014 16:40:52 +0800
neutron (2013.2.1-3) unstable; urgency=medium
* Added new Debconf template translations thanks to:
- Spanish: Camaleón (Closes: #734286).
- Swedish: Martin Bagge (Closes: #734705).
* Downgrades openswan from depends to suggests, because openswan is hardly
maintained, and not available from testing, which is blocking Neutron from
migrating: this isn't worth the trouble.
-- Thomas Goirand <zigo@debian.org> Sun, 12 Jan 2014 17:31:46 +0800
neutron (2013.2.1-2) unstable; urgency=low
[ gustavo panizzo ]
* patch backported from icehouse-1 to simplify use of metadata on
provider networks.
[ Thomas Goirand ]
* Added a bunch of bugfix in advance from the next point release. Thanks
* to
Sylvain Afchain <sylvain.afchain@enovance.com> for helping gathering and
testing these.
-- Thomas Goirand <zigo@debian.org> Mon, 30 Dec 2013 23:12:45 +0800
neutron (2013.2.1-1) unstable; urgency=high
* New upstream release. This fixes CVE-2013-6419.
* Refresh better-config-default.patch.
* Fixed rights of /var/lib/neutron/dhcp in the Ubuntu case.
* Added python-neutronclient (>= 2.3.0) as dependency of python-neutron.
* Fixes French debconf translation thanks to our Cheesemaster Christian
Perrier (Closes: #732266).
* Added Italian debconf translation, thanks to Beatrice Torracca
<beatricet@libero.it> (Closes: #732078).
* Fixed version of (build-)depends for python-six and python-iso8601.
* Added openswan as dependency for neutron-vpn-agent.
-- Thomas Goirand <zigo@debian.org> Sat, 14 Dec 2013 00:44:51 +0800
neutron (2013.2-9) unstable; urgency=medium
* Added missing handling of ml2 plugin in neutron-common.postinst.
* Do not call neutron-db-manage --config-file /etc/neutron/neutron.conf
upgrade head if the user didn't ask for db management through debconf.
-- Thomas Goirand <zigo@debian.org> Thu, 05 Dec 2013 20:30:09 +0800
neutron (2013.2-8) unstable; urgency=medium
* Fixes the core_plugin setup in neutron-common postinst.
* Added new debconf templates translations, with warm thanks to:
- French, Julien Patriarca <leatherface@debian.org> (Closes: #728764).
- Portuguese, Américo Monteiro <a_monteiro@gmx.com> (Closes: #729928).
* Configures service_plugins =
neutron.services.l3_router.l3_router_plugin.L3RouterPlugin as default.
-- Thomas Goirand <zigo@debian.org> Thu, 05 Dec 2013 16:40:28 +0800
neutron (2013.2-7) unstable; urgency=low
* neutron-l3-agent & neutron-vpn-agent now conflicts with each other.
* Fixed the cron.d files for lbass, dhcp and l3, so that they are on a single
line instead of broken lines with \ (this doesn't work otherwise).
* Fixes the sqlalchemy requirements.txt that restricted to SQLAlchemy
<= 0.7.99.
* Removes openvswitch-switch from depends since it's in pre-depends.
[ gustavo panizzo ]
* Watch file fixed.
* Dependency on OpenvSwitch has been updated to 1.9, as it required by
the plugin.
-- Thomas Goirand <zigo@debian.org> Mon, 02 Dec 2013 22:39:46 +0800
neutron (2013.2-6) unstable; urgency=low
* Now starts the openvswitch agent using the ml2 config if this is the plugin
which is in use in the core_plugin directive.
* Now sets the OVSHybridIptablesFirewallDriver as default firewall driver.
* Changes the rights of /var/lib/neutron/dhcp in Ubuntu, and depends:
dpkg-dev to check if we are in Ubuntu.
-- Thomas Goirand <zigo@debian.org> Mon, 25 Nov 2013 17:21:56 +0000
neutron (2013.2-5) unstable; urgency=low
* Added missing python-babel depends in python-neutron.
* Adds missing RabbitMQ debconf configuration code.
-- Thomas Goirand <zigo@debian.org> Fri, 25 Oct 2013 02:07:11 +0800
neutron (2013.2-4) unstable; urgency=low
* neutron-*-agent packages are now breaking + replace only old versions of
Quantum packages: those who were not transition packages (Closes: #727235).
* Adds find . -type f -name "*.pyc" -delete in dh_clean.
-- Thomas Goirand <zigo@debian.org> Thu, 24 Oct 2013 02:09:41 +0800
neutron (2013.2-3) unstable; urgency=low
* Really fix db setup (Closes: #726719).
-- Thomas Goirand <zigo@debian.org> Sat, 19 Oct 2013 14:33:15 +0800
neutron (2013.2-2) unstable; urgency=low
* Adds upstream fix for db setup (Closes: #726719).
-- Thomas Goirand <zigo@debian.org> Fri, 18 Oct 2013 22:24:05 +0800
neutron (2013.2-1) unstable; urgency=low
* New upstream release.
* Uploading to unstable.
-- Thomas Goirand <zigo@debian.org> Fri, 18 Oct 2013 00:21:51 +0800
neutron (2013.2~rc3-1) experimental; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 17 Oct 2013 15:25:13 +0800
neutron (2013.2~rc2-1) experimental; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Sun, 13 Oct 2013 00:34:40 +0800
neutron (2013.2~rc1-1) experimental; urgency=low
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Sun, 06 Oct 2013 14:15:06 +0800
neutron (2013.2~b3-1) experimental; urgency=low
* Initial release. (Closes: #718037)
-- Thomas Goirand <zigo@debian.org> Sat, 27 Jul 2013 13:11:22 +0800
|