1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
|
haproxy (1.8.19-1+deb10u3) buster; urgency=medium
* d/logrotate.conf: use rsyslog helper instead of SysV init script.
Closes: #946973.
* d/patches: reject messages where "chunked" is missing from
transfer-encoding. CVE-2019-18277.
-- Vincent Bernat <bernat@debian.org> Sat, 01 Aug 2020 14:37:46 +0200
haproxy (1.8.19-1+deb10u2) buster-security; urgency=medium
* Apply one patch to fix an overflow in HTTP/2 header handling.
Fix CVE-2020-11100.
-- Vincent Bernat <bernat@debian.org> Wed, 01 Apr 2020 12:00:13 +0200
haproxy (1.8.19-1+deb10u1) buster-security; urgency=high
* Apply two patches around HTTP/2 header validation allowing an attacker
to use a CRLF inside an HTTP header. Fix CVE-2019-19330.
-- Vincent Bernat <bernat@debian.org> Wed, 27 Nov 2019 17:07:57 +0100
haproxy (1.8.19-1) unstable; urgency=medium
* New upstream version 1.8.19
- BUG/MEDIUM: spoe: initialization depending on nbthread must be done last
- BUG/MEDIUM: server: initialize the idle conns list after parsing the
config
- BUG/MAJOR: spoe: Don't try to get agent config during SPOP healthcheck
- BUG/MAJOR: stream: avoid double free on unique_id (Closes: #921981)
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 12 Feb 2019 10:30:54 +0200
haproxy (1.8.18-1) unstable; urgency=medium
* New upstream version 1.8.18
- BUG/MAJOR: cache: fix confusion between zero and uninitialized cache
key
- BUG/MAJOR: config: verify that targets of track-sc and stick rules
are present
- BUG/MAJOR: spoe: verify that backends used by SPOE cover all their
callers' processes
-- Vincent Bernat <bernat@debian.org> Wed, 06 Feb 2019 18:44:54 +0100
haproxy (1.8.17-1) unstable; urgency=medium
* New upstream version 1.8.17
- BUG/MAJOR: stream-int: Update the stream expiration date in
stream_int_notify()
- BUG/MEDIUM: mux-h2: mark that we have too many CS once we have more than
the max
- BUG/MEDIUM: server: Also copy "check-sni" for server templates.
- BUG/MEDIUM: cli: make "show sess" really thread-safe
- BUG/MEDIUM: lua: dead lock when Lua tasks are trigerred
* Drop CVE-2018-20615.patch; merged upstream
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 14 Jan 2019 20:58:05 +0200
haproxy (1.8.16-2) unstable; urgency=high
* Fix out-of-bounds read in HTTP2 mux (CVE-2018-20615).
This would possibly lead to a crash in H2 HEADERS frame decoder when the
PRIORITY flag is present, due to a missing frame size check.
* Bump Standards-Version to 4.3.0; no changes needed.
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 03 Jan 2019 12:08:07 +0200
haproxy (1.8.16-1) unstable; urgency=high
* New upstream version 1.8.16.
- BUG/MEDIUM: dns: Don't prevent reading the last byte of the payload
in dns_validate_response()
- BUG/MEDIUM: dns: overflowed dns name start position causing invalid
dns error
* d/rules: do not override CFLAGS, hijack DEBUG_CFLAGS for this instead.
-- Vincent Bernat <bernat@debian.org> Sun, 23 Dec 2018 14:27:11 +0100
haproxy (1.8.15-1) unstable; urgency=high
[ Vincent Bernat ]
* d/rules: switch to pcre2. Closes: #911933.
[ Apollon Oikonomopoulos ]
* New upstream version 1.8.15
- BUG: dns: Fix off-by-one write in dns_validate_dns_response() (
- BUG: dns: Fix out-of-bounds read via signedness error in
dns_validate_dns_response()
- BUG: dns: Prevent out-of-bounds read in dns_read_name()
- BUG: dns: Prevent out-of-bounds read in dns_validate_dns_response()
(CVE-2018-20102, closes: #916308)
- BUG: dns: Prevent stack-exhaustion via recursion loop in dns_read_name
(CVE-2018-20103, closes: #916307)
- BUG/MAJOR: http: http_txn_get_path() may deference an inexisting buffer
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 14 Dec 2018 15:31:04 +0200
haproxy (1.8.14-1) unstable; urgency=medium
* New upstream version.
- BUG/CRITICAL: hpack: fix improper sign check on the header index
value (already fixed in 1.8.13-2)
- BUG/MAJOR: kqueue: Don't reset the changes number by accident.
- BUG/MAJOR: thread: lua: Wrong SSL context initialization.
-- Vincent Bernat <bernat@debian.org> Sun, 23 Sep 2018 12:25:03 +0200
haproxy (1.8.13-2) unstable; urgency=high
* Fix improper sign check on the HPACK header index value (CVE-2018-14645)
* Bump Standards-Version to 4.2.1; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 19 Sep 2018 22:46:58 +0300
haproxy (1.8.13-1) unstable; urgency=medium
* New upstream version.
- BUG/MEDIUM: h2: don't accept new streams if conn_streams are still
in excess
- BUG/MEDIUM: h2: make sure the last stream closes the connection
after a timeout
- BUG/MEDIUM: h2: never leave pending data in the output buffer on close
- BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection
forever
- BUG/MEDIUM: stats: don't ask for more data as long as we're responding
- BUG/MEDIUM: stream-int: don't immediately enable reading when the
buffer was reportedly full
- BUG/MEDIUM: threads/sync: use sched_yield when available
- BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
- BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
- BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread
number
* d/patches: drop systemd exit status patch (applied upstream).
-- Vincent Bernat <bernat@debian.org> Wed, 01 Aug 2018 11:36:20 +0200
haproxy (1.8.12-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: stick_table: Complete incomplete SEGV fix
-- Vincent Bernat <bernat@debian.org> Wed, 27 Jun 2018 20:05:50 +0200
haproxy (1.8.11-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: Stick-tables crash with segfault when the key is not in
the stick-table
-- Vincent Bernat <bernat@debian.org> Tue, 26 Jun 2018 18:26:05 +0200
haproxy (1.8.10-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: lua: Dead lock with sockets
- BUG/MAJOR: map: fix a segfault when using http-request set-map
- BUG/MAJOR: ssl: OpenSSL context is stored in non-reserved memory slot
- BUG/MAJOR: ssl: Random crash with cipherlist capture
- BUG/MEDIUM: cache: don't cache when an Authorization header is present
- BUG/MEDIUM: dns: Delay the attempt to run a DNS resolution on check
failure.
- BUG/MEDIUM: fd: Don't modify the update_mask in fd_dodelete().
- BUG/MEDIUM: fd: Only check update_mask against all_threads_mask.
- BUG/MEDIUM: servers: Add srv_addr default placeholder to the state file
- BUG/MEDIUM: stick-tables: Decrement ref_cnt in table_* converters
- BUG/MEDIUM: threads: Use the sync point to check active jobs and exit
- BUG/MEDIUM: threads: handle signal queue only in thread 0
* Remove patch from CVE. Included upstream.
* d/patches: add a patch for clean stop with systemd.
-- Vincent Bernat <bernat@debian.org> Fri, 22 Jun 2018 20:21:37 +0200
haproxy (1.8.9-2) unstable; urgency=high
* d/patches: fix CVE-2018-11469: do not cache when an Authorization
header is present. Closes: #900084.
-- Vincent Bernat <bernat@debian.org> Sat, 26 May 2018 16:05:07 +0200
haproxy (1.8.9-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: channel: Fix crash when trying to read from a closed socket
- BUG/MEDIUM: h2: implement missing support for chunked encoded uploads
- BUG/MEDIUM: http: don't always abort transfers on CF_SHUTR
- BUG/MEDIUM: lua: Fix segmentation fault if a Lua task exits
- BUG/MEDIUM: pollers: Use a global list for fd shared between threads
- BUG/MEDIUM: ssl: properly protect SSL cert generation
- BUG/MEDIUM: task: Don't free a task that is about to be run
- BUG/MEDIUM: threads: Fix the sync point for more than 32 threads
* d/rsyslog.conf: use modern syntax and statements, thanks to Guillem
Jover. Closes: #897914.
-- Vincent Bernat <bernat@debian.org> Sat, 19 May 2018 15:00:17 +0200
haproxy (1.8.8-1) unstable; urgency=high
* New upstream version.
- BUG/CRITICAL: h2: fix incorrect frame length check
-- Vincent Bernat <bernat@debian.org> Thu, 19 Apr 2018 17:51:55 +0200
haproxy (1.8.7-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: cache: always initialize newly created objects
* d/control: switch maintainer address to tracker.debian.org.
-- Vincent Bernat <bernat@debian.org> Sat, 07 Apr 2018 07:58:34 +0200
haproxy (1.8.6-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: cache: fix random crashes caused by incorrect delete() on
non-first blocks
- BUG/MAJOR: h2: remove orphaned streams from the send list before closing
- BUG/MEDIUM: h2/threads: never release the task outside of the task
handler
- BUG/MEDIUM: h2: always add a stream to the send or fctl list when
blocked
- BUG/MEDIUM: h2: don't consider pending data on detach if connection
is in error
-- Vincent Bernat <bernat@debian.org> Thu, 05 Apr 2018 21:08:12 +0200
haproxy (1.8.5-1) unstable; urgency=medium
* New upstream version.
- BUG/MAJOR: threads/queue: Fix thread-safety issues on the queues
management
- BUG/MEDIUM: buffer: Fix the wrapping case in bi_putblk
- BUG/MEDIUM: buffer: Fix the wrapping case in bo_putblk
- BUG/MEDIUM: fix a 100% cpu usage with cpu-map and nbthread/nbproc
- BUG/MEDIUM: h2: also arm the h2 timeout when sending
- BUG/MEDIUM: h2: always consume any trailing data after end of output
buffers
- BUG/MEDIUM: h2: properly account for DATA padding in flow control
- BUG/MEDIUM: http: Switch the HTTP response in tunnel mode as earlier
as possible
- BUG/MEDIUM: spoe: Remove idle applets from idle list when HAProxy is
stopping
- BUG/MEDIUM: ssl/sample: ssl_bc_* fetch keywords are broken.
- BUG/MEDIUM: ssl: Don't always treat SSL_ERROR_SYSCALL as
unrecovarable.
- BUG/MEDIUM: ssl: Shutdown the connection for reading on
SSL_ERROR_SYSCALL
- BUG/MEDIUM: tcp-check: single connect rule can't detect DOWN servers
- BUG/MEDIUM: threads/queue: wake up other threads upon dequeue
- BUG/MEDIUM: threads/unix: Fix a deadlock when a listener is
temporarily disabled
* Upload to unstable.
* d/control: update Vcs-* fields to salsa.debian.org.
-- Vincent Bernat <bernat@debian.org> Sun, 25 Mar 2018 11:31:25 +0200
haproxy (1.8.4-1) experimental; urgency=medium
* New upstream stable release.
* d/patches: document why dconv patch is not in series.
* d/docs: ship NOTICE file in haproxy-doc.
-- Vincent Bernat <bernat@debian.org> Sat, 10 Feb 2018 08:43:36 +0100
haproxy (1.8.3-1) experimental; urgency=medium
* New upstream stable release.
* Change default configuration of stats socket to support hitless
reload.
-- Vincent Bernat <bernat@debian.org> Tue, 02 Jan 2018 18:48:24 +0100
haproxy (1.8.2-1) experimental; urgency=medium
* New upstream stable release
* Refresh patches
* Bump Standards-Version to 4.1.2; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Sun, 24 Dec 2017 14:28:28 +0200
haproxy (1.8.1-1) experimental; urgency=medium
* New upstream stable release.
* Enable PCRE JIT.
* systemd: replace Wants/After=syslog.service with After=rsyslog.service
(Closes: #882610)
-- Apollon Oikonomopoulos <apoikos@debian.org> Sun, 03 Dec 2017 23:59:03 +0200
haproxy (1.8.0-2) experimental; urgency=medium
* Use libatomic on platforms without 64-bit atomics. Fixes FTBFS on armel,
mips, mipsel, powerpc, powerpcspe, sh4 and m68k.
* d/rules: use variables defined in architecture.mk and buildflags.mk
* d/rules: drop unreachable else case.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 29 Nov 2017 01:21:40 +0200
haproxy (1.8.0-1) experimental; urgency=medium
* New upstream stable series. Notable new features include:
+ HTTP/2 support
+ Support for multiple worker threads to allow scalability across CPUs
(e.g. for SSL termination)
+ Seamless reloads
+ HTTP small object caching
+ Dynamic backend server configuration
See https://www.haproxy.com/blog/whats-new-haproxy-1-8/ and
https://www.mail-archive.com/haproxy@formilux.org/msg28004.html for more
detailed descriptions of the new features.
* Upload to experimental
* Refresh all patches.
* d/watch: switch to the 1.8.x upstream stable series
* Bump Standards to 4.1.1
+ Switch haproxy-doc to Priority: optional from extra.
* Bump compat to 10:
+ B-D on debhelper (>= 10)
+ Drop explicit dh-systemd dependency and invocation
+ Replace --no-restart-on-upgrade with --no-restart-after-upgrade
--no-stop-on-upgrade to make up for DH 10 defaults.
* B-D on libsystemd-dev and enable sd_notify() support on Linux.
* B-D on python3-sphinx instead of python-sphinx.
* d/rules: do not call dpkg-parsechangelog directly.
* d/copyright: drop obsolete section.
* Drop obsolete lintian overrides.
* Do a full-service restart when upgrading from pre-1.8 versions and running
under systemd, to migrate to the new process model and service type.
+ Document this in d/NEWS as well.
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 28 Nov 2017 22:25:11 +0200
haproxy (1.7.10-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MAJOR: stream-int: don't re-arm recv if send fails
- BUG/MAJOR: stream: ensure analysers are always called upon close
- BUG/MEDIUM: compression: Fix check on txn in smp_fetch_res_comp_algo
- BUG/MEDIUM: connection: remove useless flag CO_FL_DATA_RD_SH
- BUG/MEDIUM: deinit: correctly deinitialize the proxy and global
listener tasks
- BUG/MEDIUM: deviceatlas: ignore not valuable HTTP request data
- BUG/MEDIUM: epoll: ensure we always consider HUP and ERR
- BUG/MEDIUM: http: Close streams for connections closed before a
redirect
- BUG/MEDIUM: http: Fix a regression bug when a HTTP response is in
TUNNEL mode
- BUG/MEDIUM: http: Return an error when url_dec sample converter
failed
- BUG/MEDIUM: http: don't automatically forward request close
- BUG/MEDIUM: http: don't disable lingering on requests with tunnelled
responses
- BUG/MEDIUM: kqueue: Don't bother closing the kqueue after fork.
- BUG/MEDIUM: lua: HTTP services must take care of body-less status
codes
- BUG/MEDIUM: lua: fix crash when using bogus mode in
register_service()
- BUG/MEDIUM: peers: set NOLINGER on the outgoing stream interface
- BUG/MEDIUM: prevent buffers being overwritten during build_logline()
execution
- BUG/MEDIUM: ssl: fix OCSP expiry calculation
- BUG/MEDIUM: stream: don't ignore res.analyse_exp anymore
- BUG/MEDIUM: stream: properly set the required HTTP analysers on
use-service
- BUG/MEDIUM: tcp-check: don't call tcpcheck_main() from the I/O
handlers!
- BUG/MEDIUM: tcp-check: properly indicate polling state before
performing I/O
- BUG/MEDIUM: tcp/http: set-dst-port action broken
* Fix VERDATE build argument to really use changelog date.
* Bump compat to 10.
* d/control: B-D on python3-sphinx instead of python-sphinx.
* d/control: make haproxy-doc Priority: optional.
* d/rules: enable PCRE JIT.
* d/rules: use variables defined in *.mk.
* d/patches: refresh and replace Wants/After=syslog.service with
After=rsyslog.service. Closes: #882610.
-- Vincent Bernat <bernat@debian.org> Wed, 03 Jan 2018 08:29:48 +0100
haproxy (1.7.9-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MAJOR: lua/socket: resources not destroyed when the socket is
aborted
- BUG/MEDIUM: lua: bad memory access
- BUG/MEDIUM: http: Switch HTTP responses in TUNNEL mode when body
length is undefined
-- Vincent Bernat <bernat@debian.org> Sat, 19 Aug 2017 12:05:02 +0200
haproxy (1.7.8-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MAJOR: cli: fix custom io_release was crushed by NULL.
- BUG/MAJOR: compression: Be sure to release the compression state in
all cases
- BUG/MAJOR: map: fix segfault during 'show map/acl' on cli.
- BUG/MEDIUM: filters: Be sure to call flt_end_analyze for both
channels
- BUG/MEDIUM: map/acl: fix unwanted flags inheritance.
* Bump Standards-Version to 4.0.0. No changes needed.
* Update d/watch to use https.
-- Vincent Bernat <bernat@debian.org> Sat, 08 Jul 2017 08:24:35 +0200
haproxy (1.7.7-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MEDIUM: http: Drop the connection establishment when a redirect
is performed
- BUG/MEDIUM: cfgparse: Check if tune.http.maxhdr is in the range
1..32767
-- Vincent Bernat <bernat@debian.org> Mon, 26 Jun 2017 14:06:48 +0200
haproxy (1.7.6-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MAJOR: Use -fwrapv.
- BUG/MAJOR: http: call manage_client_side_cookies() before erasing
the buffer
- BUG/MAJOR: server: Segfault after parsing server state file.
- BUG/MEDIUM: acl: don't free unresolved args in prune_acl_expr()
- BUG/MEDIUM: acl: proprely release unused args in prune_acl_expr()
- BUG/MEDIUM: arg: ensure that we properly unlink unresolved arguments
on error
- BUG/MEDIUM: lua: memory leak
- BUG/MEDIUM: lua: segfault if a converter or a sample doesn't return
anything
- BUG/MEDIUM: peers: Peers CLOSE_WAIT issue.
- BUG/MEDIUM: unix: never unlink a unix socket from the file system
-- Vincent Bernat <bernat@debian.org> Sun, 18 Jun 2017 12:34:40 +0200
haproxy (1.7.5-2) unstable; urgency=medium
* Enable getaddrinfo() support, allowing resolution of hostnames to IPv6
addresses (Closes: #862780). Thanks to Anton Eliasson
<devel@antoneliasson.se>!
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 17 May 2017 13:01:45 +0300
haproxy (1.7.5-1) unstable; urgency=medium
* New upstream version release (see CHANGELOG):
- BUG/MEDIUM: peers: fix buffer overflow control in intdecode.
- BUG/MEDIUM: buffers: Fix how input/output data are injected into buffers
- BUG/MEDIUM: http: Fix blocked HTTP/1.0 responses when compression is
enabled
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 04 Apr 2017 14:25:38 +0300
haproxy (1.7.4-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
- BUG/MAJOR: connection: update CO_FL_CONNECTED before calling the
data layer
- BUG/MAJOR: http: fix typo in http_apply_redirect_rule
- BUG/MAJOR: stream-int: do not depend on connection flags to detect
connection
- BUG/MEDIUM: cli: Prevent double free in CLI ACL lookup
- BUG/MEDIUM: connection: ensure to always report the end of handshakes
- BUG/MEDIUM: listener: do not try to rebind another process' socket
- BUG/MEDIUM: stream: fix client-fin/server-fin handling
- BUG/MEDIUM: tcp: don't require privileges to bind to device
-- Vincent Bernat <bernat@debian.org> Fri, 31 Mar 2017 11:01:14 +0200
haproxy (1.7.3-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
- BUG/MAJOR: lua segmentation fault when the request is like 'GET
?arg=val HTTP/1.1'
- BUG/MAJOR: dns: restart sockets after fork()
- BUG/MEDIUM: tcp: don't poll for write when connect() succeeds
- BUG/MEDIUM: http: prevent redirect from overwriting a buffer
- BUG/MEDIUM: filters: Do not truncate HTTP response when body length
is undefined
- BUG/MEDIUM: http: Prevent replace-header from overwriting a buffer
- BUG/MEDIUM: config: reject anything but "if" or "unless" after a
use-backend rule
-- Vincent Bernat <bernat@debian.org> Wed, 01 Mar 2017 20:03:12 +0100
haproxy (1.7.2-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ Fix a regression whereby fragmented requests were randomly flagged as
bad requests depending on previous buffer contents; this was noticable
under low load with authenticated requests.
+ Fix dynamic address resolution for IPv6-only hosts.
+ Make sure SSL sessions are not reused when the SNI changes. This makes
SNI and SSL health checks play nice together.
+ Minor improvements:
- Add the ability to perform actions on multiple servers via the stats
page.
- Add the ability to specify a custom HTTP reason field in generated
responses.
- New sample fetch function, `fc_rcvd_proxy', indicating wheter the
PROXY protocol was used on the frontend for a connection or not.
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 13 Jan 2017 14:49:05 +0200
haproxy (1.7.1-1) unstable; urgency=medium
* New upstream stable release.
* Upload to unstable.
* Notable new features since 1.6:
+ SPOE (stream processing offload engine) : ability to delegate some
slow, unreliable or dangerous processing to external processes.
+ More statistics in the CSV output.
+ Support of directories for config files: if the argument to -f
is a directory, all files found there are loaded in alphabetical order.
+ It is now possible to set/unset/preset environment variables directly in
the global section and query them through the CLI.
+ The CLI makes it possible to change a server's address, port, maxconn,
check address and port at runtime, without reloading haproxy.
+ Support for multiple certificates: different certificates for the same
domain so that the best one can be picked according to browser support.
The main use is to be able to deliver ECDSA certificates to clients
supporting them, without breaking compatibility with older clients.
+ SO_REUSEPORT is now configurable and can be disabled.
+ Updates to the Lua API, including new classes to access many internal
objects like listeners, servers, proxies etc.
+ Support for a new type of maps consisting of regular expressions with
replacement values.
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 13 Dec 2016 12:32:32 +0200
haproxy (1.7.0-1) experimental; urgency=medium
* New upstream stable series.
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 25 Nov 2016 18:00:55 +0200
haproxy (1.7~dev6-1) experimental; urgency=medium
* New upstream development release (Closes: #828337)
* Upload to experimental
* d/watch: look for 1.7
* B-D on zlib1g-dev
* haproxy: Depend on lsb-base for the initscript
* Ship additional plain-text documentation
* haproxy-doc: ship HTML version of management.txt
* Update the default SSL cipher list and add a link to Mozilla's SSL
configuration generator (Closes: #840735)
* d/rules: use SUBVERS to pass the Debian revision to HAPROXY_VERSION
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 10 Nov 2016 16:02:27 +0200
haproxy (1.6.10-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ Fix retransmits in proxy mode and rare cases of unkillable tasks.
+ systemd wrapper: do not leave old processes behind when reloading too
fast.
+ systemd wrapper: correctly set the status code.
+ Fix two bugs in the peers' task management possibly causing some
CLOSE_WAIT connection after some rare race conditions.
+ Make SO_REUSEPORT use configurable via the "-dR" command line switch
or the "noreuseport" config option in the global section.
* B-D on libssl1.0-dev (Closes: #828337); upstream does not currently
support OpenSSL 1.1 for the 1.6 series.
* haproxy: depend on lsb-base for the initscript's use of
/lib/lsb/init-functions.
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 21 Nov 2016 11:46:16 +0200
haproxy (1.6.9-2) unstable; urgency=medium
* Enable Linux namespace support.
* Pass the full Debian version and package release date from d/changelog to
the build system.
* initscript: reorder the reload command arguments to always parse EXTRAOPTS
properly.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 28 Sep 2016 10:45:43 +0300
haproxy (1.6.9-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: stream: properly mark the server address as unset on
connect retry
-- Vincent Bernat <bernat@debian.org> Wed, 31 Aug 2016 07:44:27 +0200
haproxy (1.6.8-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: compression: initialize avail_in/next_in even during
flush
+ BUG/MAJOR: server: the "sni" directive could randomly cause trouble
+ BUG/MAJOR: stick-counters: possible crash when using sc_trackers
with wrong table
-- Vincent Bernat <bernat@debian.org> Sun, 14 Aug 2016 14:17:08 +0200
haproxy (1.6.7-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: fix use-after-free crash on start
+ BUG/MEDIUM: dns: fix alignment issues in the DNS response parser
-- Vincent Bernat <bernat@debian.org> Thu, 14 Jul 2016 08:29:43 +0200
haproxy (1.6.6-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: fix listening IP address storage for frontends
+ BUG/MAJOR: http: fix breakage of "reqdeny" causing random crashes
+ BUG/MEDIUM: stick-tables: fix breakage in table converters
+ BUG/MEDIUM: dns: unbreak DNS resolver after header fix
+ BUG/MEDIUM: stats: show servers state may show an servers from another
backend
+ BUG/MEDIUM: fix risk of segfault with "show tls-keys"
+ BUG/MEDIUM: sticktables: segfault in some configuration error cases
+ BUG/MEDIUM: lua: converters doesn't work
+ BUG/MEDIUM: http: add-header: buffer overwritten
+ BUG/MEDIUM: external-checks: close all FDs right after the fork()
+ BUG/MAJOR: external-checks: use asynchronous signal delivery
* Drop haproxy.service-check-config-before-reload.patch. Applied
upstream.
-- Vincent Bernat <bernat@debian.org> Tue, 28 Jun 2016 10:13:33 +0200
haproxy (1.6.5-2) unstable; urgency=high
* Add a patch to fix CVE-2016-5360. Closes: #826869.
+ BUG/MAJOR: http: fix breakage of "reqdeny" causing random crashes
-- Vincent Bernat <bernat@debian.org> Sat, 11 Jun 2016 22:23:50 +0200
haproxy (1.6.5-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: channel: fix miscalculation of available buffer space
+ BUG/MAJOR: Fix crash in http_get_fhdr with exactly MAX_HDR_HISTORY
headers
+ BUG/MEDIUM: channel: don't allow to overwrite the reserve until
connected
+ BUG/MEDIUM: channel: fix inconsistent handling of 4GB-1 transfers
+ BUG/MEDIUM: channel: incorrect polling condition may delay event
delivery
+ BUG/MEDIUM: dns: fix alignment issue when building DNS queries
+ BUG/MEDIUM: fix maxaccept computation on per-process listeners
+ BUG/MEDIUM: Fix RFC5077 resumption when more than TLS_TICKETS_NO are
present
+ BUG/MEDIUM: http: fix risk of CPU spikes with pipelined requests from
dead client
+ BUG/MEDIUM: log: fix risk of segfault when logging HTTP fields in TCP
mode
+ BUG/MEDIUM: lua: protects the upper boundary of the argument list for
converters/fetches.
+ BUG/MEDIUM: peers: fix incorrect age in frequency counters
+ BUG/MEDIUM: sample: initialize the pointer before parse_binary call.
+ BUG/MEDIUM: stats: show backend may show an empty or incomplete result
+ BUG/MEDIUM: stats: show servers state may show an empty or incomplete
result
+ BUG/MEDIUM: stick-tables: some sample-fetch doesn't work in the
connection state.
+ BUG/MEDIUM: stream: ensure the SI_FL_DONT_WAKE flag is properly cleared
+ BUG/MEDIUM: trace.c: rdtsc() is defined in two files
+ MEDIUM: unblock signals on startup.
* Bump standards to 3.9.8; no changes needed.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 11 May 2016 11:07:24 +0300
haproxy (1.6.4-3) unstable; urgency=medium
* d/init: remove support for dynamic script name. This enable haproxy to
be started on boot.
-- Vincent Bernat <bernat@debian.org> Thu, 24 Mar 2016 20:36:08 +0100
haproxy (1.6.4-2) unstable; urgency=medium
* d/init: fix SysV init script w/ respect to handling EXTRAOPTS on check.
* d/control: add Pre-Depends for dpkg-maintscript-helper support of
dir_to_symlink.
-- Vincent Bernat <bernat@debian.org> Sat, 19 Mar 2016 16:35:20 +0100
haproxy (1.6.4-1) unstable; urgency=medium
* New upstream release (see CHANGELOG):
+ BUG/MAJOR: http-reuse: fix risk of orphaned connections.
+ BUG/MAJOR: lua: applets can't sleep.
+ BUG/MAJOR: samples: check smp->strm before using it.
+ BUG/MAJOR: servers state: server port is erased when dns resolution is
enabled on a server.
+ BUG/MAJOR: vars: always retrieve the stream and session from the sample
+ BUG/MEDIUM: buffers: do not round up buffer size during allocation
+ BUG/MEDIUM: dns: no DNS resolution happens if no ports provided to the
nameserver
+ BUG/MEDIUM: servers state: server port is used uninitialized
+ BUG/MEDIUM: config: Adding validation to stick-table expire value.
+ BUG/MEDIUM: sample: http_date() doesn't provide the right day of the
week
+ BUG/MEDIUM: channel: fix miscalculation of available buffer space.
+ BUG/MEDIUM: http-reuse: do not share private connections across backends
+ BUG/MEDIUM: ssl: fix off-by-one in ALPN list allocation
+ BUG/MEDIUM: ssl: fix off-by-one in NPN list allocation
+ BUG/MEDIUM: stats: stats bind-process doesn't propagate the process mask
correctly
+ BUG/MEDIUM: chunks: always reject negative-length chunks
+ BUG/MEDIUM: cfgparse: wrong argument offset after parsing server "sni"
keyword
[ Vincent Bernat ]
* haproxy.init: append ${EXTRAOPTS} when verifying configuration file.
* haproxy.init: move EXTRAOPTS after all other parameters.
* haproxy.init: management of multiple HAProxy instances with SysV
init.d script, courtesy of Ivan Savcic.
[ Apollon Oikonomopoulos ]
* Bump standards to 3.9.7:
+ haproxy-doc: move the additional documentation from
/usr/share/doc/haproxy-doc to /usr/share/doc/haproxy, as per the
recommendation in Policy §12.3.
+ Add compatibility symlinks from /usr/share/doc/haproxy-doc to
/usr/share/doc/haproxy.
* Enable all hardening flags.
* d/control: use HTTPS for Vcs-*
* Use www.haproxy.org as the project's homepage in d/control and
d/copyright.
* d/copyright: adjust debian/* years.
* Add basic DEP-8 tests.
* Drop the haproxy-dbg binary package in favor of ddebs.
* haproxy-doc:
+ Use dpkg-maintscript-helper dir_to_symlink for the compatibility
symlinks.
+ Add Lua documentation doc-base entry.
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 15 Mar 2016 21:04:11 +0200
haproxy (1.6.3-1) unstable; urgency=medium
[ Apollon Oikonomopoulos ]
* haproxy.init: use s-s-d's --pidfile option.
Thanks to Louis Bouchard (Closes: 804530)
[ Vincent Bernat ]
* watch: fix d/watch to look for 1.6 version
* Imported Upstream version 1.6.3
-- Vincent Bernat <bernat@debian.org> Thu, 31 Dec 2015 08:10:10 +0100
haproxy (1.6.2-2) unstable; urgency=medium
* Enable USE_REGPARM on amd64 as well.
-- Vincent Bernat <bernat@debian.org> Tue, 03 Nov 2015 21:21:30 +0100
haproxy (1.6.2-1) unstable; urgency=medium
* New upstream release.
- BUG/MAJOR: dns: first DNS response packet not matching queried
hostname may lead to a loop
- BUG/MAJOR: http: don't requeue an idle connection that is already
queued
* Upload to unstable.
-- Vincent Bernat <bernat@debian.org> Tue, 03 Nov 2015 13:36:22 +0100
haproxy (1.6.1-2) experimental; urgency=medium
* Build the Lua manpage in -arch, fixes FTBFS in binary-only builds.
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 22 Oct 2015 12:19:41 +0300
haproxy (1.6.1-1) experimental; urgency=medium
[ Vincent Bernat ]
* New upstream release.
- BUG/MAJOR: ssl: free the generated SSL_CTX if the LRU cache is
disabled
* Drop 0001-BUILD-install-only-relevant-and-existing-documentati.patch.
[ Apollon Oikonomopoulos ]
* Ship and generate Lua API documentation.
-- Vincent Bernat <bernat@debian.org> Thu, 22 Oct 2015 10:45:55 +0200
haproxy (1.6.0+ds1-1) experimental; urgency=medium
* New upstream release!
* Add a patch to fix documentation installation:
+ 0001-BUILD-install-only-relevant-and-existing-documentati.patch
* Update HAProxy documentation converter to a more recent version.
-- Vincent Bernat <bernat@debian.org> Wed, 14 Oct 2015 17:29:19 +0200
haproxy (1.6~dev7-1) experimental; urgency=medium
* New upstream release.
-- Vincent Bernat <bernat@debian.org> Tue, 06 Oct 2015 16:01:26 +0200
haproxy (1.6~dev5-1) experimental; urgency=medium
* New upstream release.
-- Vincent Bernat <bernat@debian.org> Mon, 14 Sep 2015 15:50:28 +0200
haproxy (1.6~dev4-1) experimental; urgency=medium
* New upstream release.
* Refresh debian/copyright.
-- Vincent Bernat <bernat@debian.org> Sun, 30 Aug 2015 23:54:10 +0200
haproxy (1.6~dev3-1) experimental; urgency=medium
* New upstream release.
* Enable Lua support.
-- Vincent Bernat <bernat@debian.org> Sat, 15 Aug 2015 17:51:29 +0200
haproxy (1.5.15-1) unstable; urgency=medium
* New upstream stable release including the following fix:
- BUG/MAJOR: http: don't call http_send_name_header() after an error
-- Vincent Bernat <bernat@debian.org> Mon, 02 Nov 2015 07:34:19 +0100
haproxy (1.5.14-1) unstable; urgency=high
* New upstream version. Fix an information leak (CVE-2015-3281):
- BUG/MAJOR: buffers: make the buffer_slow_realign() function
respect output data.
* Add $named as a dependency for init script. Closes: #790638.
-- Vincent Bernat <bernat@debian.org> Fri, 03 Jul 2015 19:49:02 +0200
haproxy (1.5.13-1) unstable; urgency=medium
* New upstream stable release including the following fixes:
- MAJOR: peers: allow peers section to be used with nbproc > 1
- BUG/MAJOR: checks: always check for end of list before proceeding
- MEDIUM: ssl: replace standards DH groups with custom ones
- BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value being overwritten
- BUG/MEDIUM: cfgparse: segfault when userlist is misused
- BUG/MEDIUM: stats: properly initialize the scope before dumping stats
- BUG/MEDIUM: http: don't forward client shutdown without NOLINGER
except for tunnels
- BUG/MEDIUM: checks: do not dereference head of a tcp-check at the end
- BUG/MEDIUM: checks: do not dereference a list as a tcpcheck struct
- BUG/MEDIUM: peers: apply a random reconnection timeout
- BUG/MEDIUM: config: properly compute the default number of processes
for a proxy
-- Vincent Bernat <bernat@debian.org> Sat, 27 Jun 2015 20:52:07 +0200
haproxy (1.5.12-1) unstable; urgency=medium
* New upstream stable release including the following fixes:
- BUG/MAJOR: http: don't read past buffer's end in http_replace_value
- BUG/MAJOR: http: prevent risk of reading past end with balance
url_param
- BUG/MEDIUM: Do not consider an agent check as failed on L7 error
- BUG/MEDIUM: patern: some entries are not deleted with case
insensitive match
- BUG/MEDIUM: buffer: one byte miss in buffer free space check
- BUG/MEDIUM: http: thefunction "(req|res)-replace-value" doesn't
respect the HTTP syntax
- BUG/MEDIUM: peers: correctly configure the client timeout
- BUG/MEDIUM: http: hdr_cnt would not count any header when called
without name
- BUG/MEDIUM: listener: don't report an error when resuming unbound
listeners
- BUG/MEDIUM: init: don't limit cpu-map to the first 32 processes only
- BUG/MEDIUM: stream-int: always reset si->ops when si->end is
nullified
- BUG/MEDIUM: http: remove content-length from chunked messages
- BUG/MEDIUM: http: do not restrict parsing of transfer-encoding to
HTTP/1.1
- BUG/MEDIUM: http: incorrect transfer-coding in the request is a bad
request
- BUG/MEDIUM: http: remove content-length form responses with bad
transfer-encoding
- BUG/MEDIUM: http: wait for the exact amount of body bytes in
wait_for_request_body
-- Vincent Bernat <bernat@debian.org> Sat, 02 May 2015 16:38:28 +0200
haproxy (1.5.11-2) unstable; urgency=medium
* Upload to unstable.
-- Vincent Bernat <bernat@debian.org> Sun, 26 Apr 2015 17:46:58 +0200
haproxy (1.5.11-1) experimental; urgency=medium
* New upstream stable release including the following fixes:
- BUG/MAJOR: log: don't try to emit a log if no logger is set
- BUG/MEDIUM: backend: correctly detect the domain when
use_domain_only is used
- BUG/MEDIUM: Do not set agent health to zero if server is disabled
in config
- BUG/MEDIUM: Only explicitly report "DOWN (agent)" if the agent health
is zero
- BUG/MEDIUM: http: fix header removal when previous header ends with
pure LF
- BUG/MEDIUM: channel: fix possible integer overflow on reserved size
computation
- BUG/MEDIUM: channel: don't schedule data in transit for leaving until
connected
- BUG/MEDIUM: http: make http-request set-header compute the string
before removal
* Upload to experimental.
-- Vincent Bernat <bernat@debian.org> Sun, 01 Feb 2015 09:22:27 +0100
haproxy (1.5.10-1) experimental; urgency=medium
* New upstream stable release including the following fixes:
- BUG/MAJOR: stream-int: properly check the memory allocation return
- BUG/MEDIUM: sample: fix random number upper-bound
- BUG/MEDIUM: patterns: previous fix was incomplete
- BUG/MEDIUM: payload: ensure that a request channel is available
- BUG/MEDIUM: tcp-check: don't rely on random memory contents
- BUG/MEDIUM: tcp-checks: disable quick-ack unless next rule is an expect
- BUG/MEDIUM: config: do not propagate processes between stopped
processes
- BUG/MEDIUM: memory: fix freeing logic in pool_gc2()
- BUG/MEDIUM: compression: correctly report zlib_mem
* Upload to experimental.
-- Vincent Bernat <bernat@debian.org> Sun, 04 Jan 2015 13:17:56 +0100
haproxy (1.5.9-1) experimental; urgency=medium
* New upstream stable release including the following fixes:
- BUG/MAJOR: sessions: unlink session from list on out
of memory
- BUG/MEDIUM: pattern: don't load more than once a pattern
list.
- BUG/MEDIUM: connection: sanitize PPv2 header length before
parsing address information
- BUG/MAJOR: frontend: initialize capture pointers earlier
- BUG/MEDIUM: checks: fix conflicts between agent checks and
ssl healthchecks
- BUG/MEDIUM: ssl: force a full GC in case of memory shortage
- BUG/MEDIUM: ssl: fix bad ssl context init can cause
segfault in case of OOM.
* Upload to experimental.
-- Vincent Bernat <bernat@debian.org> Sun, 07 Dec 2014 16:37:36 +0100
haproxy (1.5.8-3) unstable; urgency=medium
* Remove RC4 from the default cipher string shipped in configuration.
-- Vincent Bernat <bernat@debian.org> Fri, 27 Feb 2015 11:29:23 +0100
haproxy (1.5.8-2) unstable; urgency=medium
* Cherry-pick the following patches from 1.5.9 release:
- 8a0b93bde77e BUG/MAJOR: sessions: unlink session from list on out
of memory
- bae03eaad40a BUG/MEDIUM: pattern: don't load more than once a pattern
list.
- 93637b6e8503 BUG/MEDIUM: connection: sanitize PPv2 header length before
parsing address information
- 8ba50128832b BUG/MAJOR: frontend: initialize capture pointers earlier
- 1f96a87c4e14 BUG/MEDIUM: checks: fix conflicts between agent checks and
ssl healthchecks
- 9bcc01ae2598 BUG/MEDIUM: ssl: force a full GC in case of memory shortage
- 909514970089 BUG/MEDIUM: ssl: fix bad ssl context init can cause
segfault in case of OOM.
* Cherry-pick the following patches from future 1.5.10 release:
- 1e89acb6be9b BUG/MEDIUM: payload: ensure that a request channel is
available
- bad3c6f1b6d7 BUG/MEDIUM: patterns: previous fix was incomplete
-- Vincent Bernat <bernat@debian.org> Sun, 07 Dec 2014 11:11:21 +0100
haproxy (1.5.8-1) unstable; urgency=medium
* New upstream stable release including the following fixes:
+ BUG/MAJOR: buffer: check the space left is enough or not when input
data in a buffer is wrapped
+ BUG/MINOR: ssl: correctly initialize ssl ctx for invalid certificates
+ BUG/MEDIUM: tcp: don't use SO_ORIGINAL_DST on non-AF_INET sockets
+ BUG/MEDIUM: regex: fix pcre_study error handling
+ BUG/MEDIUM: tcp: fix outgoing polling based on proxy protocol
+ BUG/MINOR: log: fix request flags when keep-alive is enabled
+ BUG/MAJOR: cli: explicitly call cli_release_handler() upon error
+ BUG/MEDIUM: http: don't dump debug headers on MSG_ERROR
* Also includes the following new features:
+ MINOR: ssl: add statement to force some ssl options in global.
+ MINOR: ssl: add fetchs 'ssl_c_der' and 'ssl_f_der' to return DER
formatted certs
* Disable SSLv3 in the default configuration file.
-- Vincent Bernat <bernat@debian.org> Fri, 31 Oct 2014 13:48:19 +0100
haproxy (1.5.6-1) unstable; urgency=medium
* New upstream stable release including the following fixes:
+ BUG/MEDIUM: systemd: set KillMode to 'mixed'
+ MINOR: systemd: Check configuration before start
+ BUG/MEDIUM: config: avoid skipping disabled proxies
+ BUG/MINOR: config: do not accept more track-sc than configured
+ BUG/MEDIUM: backend: fix URI hash when a query string is present
* Drop systemd patches:
+ haproxy.service-also-check-on-start.patch
+ haproxy.service-set-killmode-to-mixed.patch
* Refresh other patches.
-- Vincent Bernat <bernat@debian.org> Mon, 20 Oct 2014 18:10:21 +0200
haproxy (1.5.5-1) unstable; urgency=medium
[ Vincent Bernat ]
* initscript: use start-stop-daemon to reliably terminate all haproxy
processes. Also treat stopping a non-running haproxy as success.
(Closes: #762608, LP: #1038139)
[ Apollon Oikonomopoulos ]
* New upstream stable release including the following fixes:
+ DOC: Address issue where documentation is excluded due to a gitignore
rule.
+ MEDIUM: Improve signal handling in systemd wrapper.
+ BUG/MINOR: config: don't propagate process binding for dynamic
use_backend
+ MINOR: Also accept SIGHUP/SIGTERM in systemd-wrapper
+ DOC: clearly state that the "show sess" output format is not fixed
+ MINOR: stats: fix minor typo fix in stats_dump_errors_to_buffer()
+ DOC: indicate in the doc that track-sc* can wait if data are missing
+ MEDIUM: http: enable header manipulation for 101 responses
+ BUG/MEDIUM: config: propagate frontend to backend process binding again.
+ MEDIUM: config: properly propagate process binding between proxies
+ MEDIUM: config: make the frontends automatically bind to the listeners'
processes
+ MEDIUM: config: compute the exact bind-process before listener's
maxaccept
+ MEDIUM: config: only warn if stats are attached to multi-process bind
directives
+ MEDIUM: config: report it when tcp-request rules are misplaced
+ MINOR: config: detect the case where a tcp-request content rule has no
inspect-delay
+ MEDIUM: systemd-wrapper: support multiple executable versions and names
+ BUG/MEDIUM: remove debugging code from systemd-wrapper
+ BUG/MEDIUM: http: adjust close mode when switching to backend
+ BUG/MINOR: config: don't propagate process binding on fatal errors.
+ BUG/MEDIUM: check: rule-less tcp-check must detect connect failures
+ BUG/MINOR: tcp-check: report the correct failed step in the status
+ DOC: indicate that weight zero is reported as DRAIN
* Add a new patch (haproxy.service-set-killmode-to-mixed.patch) to fix the
systemctl stop action conflicting with the systemd wrapper now catching
SIGTERM.
* Bump standards to 3.9.6; no changes needed.
* haproxy-doc: link to tracker.debian.org instead of packages.qa.debian.org.
* d/copyright: move debian/dconv/* paragraph after debian/*, so that it
actually matches the files it is supposed to.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 08 Oct 2014 12:34:53 +0300
haproxy (1.5.4-1) unstable; urgency=high
* New upstream version.
+ Fix a critical bug that, under certain unlikely conditions, allows a
client to crash haproxy.
* Prefix rsyslog configuration file to ensure to log only to
/var/log/haproxy. Thanks to Paul Bourke for the patch.
-- Vincent Bernat <bernat@debian.org> Tue, 02 Sep 2014 19:14:38 +0200
haproxy (1.5.3-1) unstable; urgency=medium
* New upstream stable release, fixing the following issues:
+ Memory corruption when building a proxy protocol v2 header
+ Memory leak in SSL DHE key exchange
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 25 Jul 2014 10:41:36 +0300
haproxy (1.5.2-1) unstable; urgency=medium
* New upstream stable release. Important fixes:
+ A few sample fetch functions when combined in certain ways would return
malformed results, possibly crashing the HAProxy process.
+ Hash-based load balancing and http-send-name-header would fail for
requests which contain a body which starts to be forwarded before the
data is used.
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 14 Jul 2014 00:42:32 +0300
haproxy (1.5.1-1) unstable; urgency=medium
* New upstream stable release:
+ Fix a file descriptor leak for clients that disappear before connecting.
+ Do not staple expired OCSP responses.
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 24 Jun 2014 12:56:30 +0300
haproxy (1.5.0-1) unstable; urgency=medium
* New upstream stable series. Notable changes since the 1.4 series:
+ Native SSL support on both sides with SNI/NPN/ALPN and OCSP stapling.
+ IPv6 and UNIX sockets are supported everywhere
+ End-to-end HTTP keep-alive for better support of NTLM and improved
efficiency in static farms
+ HTTP/1.1 response compression (deflate, gzip) to save bandwidth
+ PROXY protocol versions 1 and 2 on both sides
+ Data sampling on everything in request or response, including payload
+ ACLs can use any matching method with any input sample
+ Maps and dynamic ACLs updatable from the CLI
+ Stick-tables support counters to track activity on any input sample
+ Custom format for logs, unique-id, header rewriting, and redirects
+ Improved health checks (SSL, scripted TCP, check agent, ...)
+ Much more scalable configuration supports hundreds of thousands of
backends and certificates without sweating
* Upload to unstable, merge all 1.5 work from experimental. Most important
packaging changes since 1.4.25-1 include:
+ systemd support.
+ A more sane default config file.
+ Zero-downtime upgrades between 1.5 releases by gracefully reloading
HAProxy during upgrades.
+ HTML documentation shipped in the haproxy-doc package.
+ kqueue support for kfreebsd.
* Packaging changes since 1.5~dev26-2:
+ Drop patches merged upstream:
o Fix-reference-location-in-manpage.patch
o 0001-BUILD-stats-workaround-stupid-and-bogus-Werror-forma.patch
+ d/watch: look for stable 1.5 releases
+ systemd: respect CONFIG and EXTRAOPTS when specified in
/etc/default/haproxy.
+ initscript: test the configuration before start or reload.
+ initscript: remove the ENABLED flag and logic.
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 20 Jun 2014 11:05:17 +0300
haproxy (1.5~dev26-2) experimental; urgency=medium
* initscript: start should not fail when haproxy is already running
+ Fixes upgrades from post-1.5~dev24-1 installations
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 04 Jun 2014 13:20:39 +0300
haproxy (1.5~dev26-1) experimental; urgency=medium
* New upstream development version.
+ Add a patch to fix compilation with -Werror=format-security
-- Vincent Bernat <bernat@debian.org> Wed, 28 May 2014 20:32:10 +0200
haproxy (1.5~dev25-1) experimental; urgency=medium
[ Vincent Bernat ]
* New upstream development version.
* Rename "contimeout", "clitimeout" and "srvtimeout" in the default
configuration file to "timeout connection", "timeout client" and
"timeout server".
[ Apollon Oikonomopoulos ]
* Build on kfreebsd using the "freebsd" target; enables kqueue support.
-- Vincent Bernat <bernat@debian.org> Thu, 15 May 2014 00:20:11 +0200
haproxy (1.5~dev24-2) experimental; urgency=medium
* New binary package: haproxy-doc
+ Contains the HTML documentation built using a version of Cyril Bonté's
haproxy-dconv (https://github.com/cbonte/haproxy-dconv).
+ Add Build-Depends-Indep on python and python-mako
+ haproxy Suggests: haproxy-doc
* systemd: check config file for validity on reload.
* haproxy.cfg:
+ Enable the stats socket by default and bind it to
/run/haproxy/admin.sock, which is accessible by the haproxy group.
/run/haproxy creation is handled by the initscript for sysv-rc and a
tmpfiles.d config for systemd.
+ Set the default locations for CA and server certificates to
/etc/ssl/certs and /etc/ssl/private respectively.
+ Set the default cipher list to be used on listening SSL sockets to
enable PFS, preferring ECDHE ciphers by default.
* Gracefully reload HAProxy on upgrade instead of performing a full restart.
* debian/rules: split build into binary-arch and binary-indep.
* Build-depend on debhelper >= 9, set compat to 9.
-- Apollon Oikonomopoulos <apoikos@debian.org> Sun, 27 Apr 2014 13:37:17 +0300
haproxy (1.5~dev24-1) experimental; urgency=medium
* New upstream development version, fixes major regressions introduced in
1.5~dev23:
+ Forwarding of a message body (request or response) would automatically
stop after the transfer timeout strikes, and with no error.
+ Redirects failed to update the msg->next offset after consuming the
request, so if they were made with keep-alive enabled and starting with
a slash (relative location), then the buffer was shifted by a negative
amount of data, causing a crash.
+ The code to standardize DH parameters caused an important performance
regression for, so it was temporarily reverted for the time needed to
understand the cause and to fix it.
For a complete release announcement, including other bugfixes and feature
enhancements, see http://deb.li/yBVA.
-- Apollon Oikonomopoulos <apoikos@debian.org> Sun, 27 Apr 2014 11:09:37 +0300
haproxy (1.5~dev23-1) experimental; urgency=medium
* New upstream development version; notable changes since 1.5~dev22:
+ SSL record size optimizations to speed up both, small and large
transfers.
+ Dynamic backend name support in use_backend.
+ Compressed chunked transfer encoding support.
+ Dynamic ACL manipulation via the CLI.
+ New "language" converter for extracting language preferences from
Accept-Language headers.
* Remove halog source and systemd unit files from
/usr/share/doc/haproxy/contrib, they are built and shipped in their
appropriate locations since 1.5~dev19-2.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 23 Apr 2014 11:12:34 +0300
haproxy (1.5~dev22-1) experimental; urgency=medium
* New upstream development version
* watch: use the source page and not the main one
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 03 Feb 2014 17:45:51 +0200
haproxy (1.5~dev21+20140118-1) experimental; urgency=medium
* New upstream development snapshot, with the following fixes since
1.5-dev21:
+ 00b0fb9 BUG/MAJOR: ssl: fix breakage caused by recent fix abf08d9
+ 410f810 BUG/MEDIUM: map: segmentation fault with the stats's socket
command "set map ..."
+ abf08d9 BUG/MAJOR: connection: fix mismatch between rcv_buf's API and
usage
+ 35249cb BUG/MINOR: pattern: pattern comparison executed twice
+ c920096 BUG/MINOR: http: don't clear the SI_FL_DONT_WAKE flag between
requests
+ b800623 BUG/MEDIUM: stats: fix HTTP/1.0 breakage introduced in previous
patch
+ 61f7f0a BUG/MINOR: stream-int: do not clear the owner upon unregister
+ 983eb31 BUG/MINOR: channel: CHN_INFINITE_FORWARD must be unsigned
+ a3ae932 BUG/MEDIUM: stats: the web interface must check the tracked
servers before enabling
+ e24d963 BUG/MEDIUM: checks: unchecked servers could not be enabled
anymore
+ 7257550 BUG/MINOR: http: always disable compression on HTTP/1.0
+ 9f708ab BUG/MINOR: checks: successful check completion must not
re-enable MAINT servers
+ ff605db BUG/MEDIUM: backend: do not re-initialize the connection's
context upon reuse
+ ea90063 BUG/MEDIUM: stream-int: fix the keep-alive idle connection
handler
* Update debian/copyright to reflect the license of ebtree/
(closes: #732614)
* Synchronize debian/copyright with source
* Add Documentation field to the systemd unit file
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 20 Jan 2014 10:07:34 +0200
haproxy (1.5~dev21-1) experimental; urgency=low
[ Prach Pongpanich ]
* Bump Standards-Version to 3.9.5
[ Thomas Bechtold ]
* debian/control: Add haproxy-dbg binary package for debug symbols.
[ Apollon Oikonomopoulos ]
* New upstream development version.
* Require syslog to be operational before starting. Closes: #726323.
-- Vincent Bernat <bernat@debian.org> Tue, 17 Dec 2013 01:38:04 +0700
haproxy (1.5~dev19-2) experimental; urgency=low
[ Vincent Bernat ]
* Really enable systemd support by using dh-systemd helper.
* Don't use -L/usr/lib and rely on default search path. Closes: #722777.
[ Apollon Oikonomopoulos ]
* Ship halog.
-- Vincent Bernat <bernat@debian.org> Thu, 12 Sep 2013 21:58:05 +0200
haproxy (1.5~dev19-1) experimental; urgency=high
[ Vincent Bernat ]
* New upstream version.
+ CVE-2013-2175: fix a possible crash when using negative header
occurrences.
+ Drop 0002-Fix-typo-in-src-haproxy.patch: applied upstream.
* Enable gzip compression feature.
[ Prach Pongpanich ]
* Drop bashism patch. It seems useless to maintain a patch to convert
example scripts from /bin/bash to /bin/sh.
* Fix reload/restart action of init script (LP: #1187469)
-- Vincent Bernat <bernat@debian.org> Mon, 17 Jun 2013 22:03:58 +0200
haproxy (1.5~dev18-1) experimental; urgency=low
[ Apollon Oikonomopoulos ]
* New upstream development version
[ Vincent Bernat ]
* Add support for systemd. Currently, /etc/default/haproxy is not used
when using systemd.
-- Vincent Bernat <bernat@debian.org> Sun, 26 May 2013 12:33:00 +0200
haproxy (1.4.25-1) unstable; urgency=medium
[ Prach Pongpanich ]
* New upstream version.
* Update watch file to use the source page.
* Bump Standards-Version to 3.9.5.
[ Thomas Bechtold ]
* debian/control: Add haproxy-dbg binary package for debug symbols.
[ Apollon Oikonomopoulos ]
* Require syslog to be operational before starting. Closes: #726323.
* Document how to bind non-local IPv6 addresses.
* Add a reference to configuration.txt.gz to the manpage.
* debian/copyright: synchronize with source.
-- Prach Pongpanich <prachpub@gmail.com> Fri, 28 Mar 2014 09:35:09 +0700
haproxy (1.4.24-2) unstable; urgency=low
[ Apollon Oikonomopoulos ]
* Ship contrib/halog as /usr/bin/halog.
[ Vincent Bernat ]
* Don't use -L/usr/lib and rely on default search path. Closes: #722777.
-- Vincent Bernat <bernat@debian.org> Sun, 15 Sep 2013 14:36:27 +0200
haproxy (1.4.24-1) unstable; urgency=high
[ Vincent Bernat ]
* New upstream version.
+ CVE-2013-2175: fix a possible crash when using negative header
occurrences.
[ Prach Pongpanich ]
* Drop bashism patch. It seems useless to maintain a patch to convert
example scripts from /bin/bash to /bin/sh.
* Fix reload/restart action of init script (LP: #1187469).
-- Vincent Bernat <bernat@debian.org> Mon, 17 Jun 2013 21:56:26 +0200
haproxy (1.4.23-1) unstable; urgency=low
[ Apollon Oikonomopoulos ]
* New upstream version (Closes: #643650, #678953)
+ This fixes CVE-2012-2942 (Closes: #674447)
+ This fixes CVE-2013-1912 (Closes: #704611)
* Ship vim addon as vim-haproxy (Closes: #702893)
* Check for the configuration file after sourcing /etc/default/haproxy
(Closes: #641762)
* Use /dev/log for logging by default (Closes: #649085)
[ Vincent Bernat ]
* debian/control:
+ add Vcs-* fields
+ switch maintenance to Debian HAProxy team. (Closes: #706890)
+ drop dependency to quilt: 3.0 (quilt) format is in use.
* debian/rules:
+ don't explicitly call dh_installchangelog.
+ use dh_installdirs to install directories.
+ use dh_install to install error and configuration files.
+ switch to `linux2628` Makefile target for Linux.
* debian/postrm:
+ remove haproxy user and group on purge.
* Ship a more minimal haproxy.cfg file: no `listen` blocks but `global`
and `defaults` block with appropriate configuration to use chroot and
logging in the expected way.
[ Prach Pongpanich ]
* debian/copyright:
+ add missing copyright holders
+ update years of copyright
* debian/rules:
+ build with -Wl,--as-needed to get rid of unnecessary depends
* Remove useless files in debian/haproxy.{docs,examples}
* Update debian/watch file, thanks to Bart Martens
-- Vincent Bernat <bernat@debian.org> Mon, 06 May 2013 20:02:14 +0200
haproxy (1.4.15-1) unstable; urgency=low
* New upstream release with critical bug fix (Closes: #631351)
-- Christo Buschek <crito@30loops.net> Thu, 14 Jul 2011 18:17:05 +0200
haproxy (1.4.13-1) unstable; urgency=low
* New maintainer upload (Closes: #615246)
* New upstream release
* Standards-version goes 3.9.1 (no change)
* Added patch bashism (Closes: #581109)
* Added a README.source file.
-- Christo Buschek <crito@30loops.net> Thu, 11 Mar 2011 12:41:59 +0000
haproxy (1.4.8-1) unstable; urgency=low
* New upstream release.
-- Arnaud Cornet <acornet@debian.org> Fri, 18 Jun 2010 00:42:53 +0100
haproxy (1.4.4-1) unstable; urgency=low
* New upstream release
* Add splice and tproxy support
* Add regparm optimization on i386
* Switch to dpkg-source 3.0 (quilt) format
-- Arnaud Cornet <acornet@debian.org> Thu, 15 Apr 2010 20:00:34 +0100
haproxy (1.4.2-1) unstable; urgency=low
* New upstream release
* Remove debian/patches/haproxy.1-hyphen.patch gone upstream
* Tighten quilt build dep (Closes: #567087)
* standards-version goes 3.8.4 (no change)
* Add $remote_fs to init.d script required start and stop
-- Arnaud Cornet <acornet@debian.org> Sat, 27 Mar 2010 15:19:48 +0000
haproxy (1.3.22-1) unstable; urgency=low
* New upstream bugfix release
-- Arnaud Cornet <acornet@debian.org> Mon, 19 Oct 2009 22:31:45 +0100
haproxy (1.3.21-1) unstable; urgency=low
[ Michael Shuler ]
* New Upstream Version (Closes: #538992)
* Added override for example shell scripts in docs (Closes: #530096)
* Added upstream changelog to docs
* Added debian/watch
* Updated debian/copyright format
* Added haproxy.1-hyphen.patch, to fix hyphen in man page
* Upgrade Standards-Version to 3.8.3 (no change needed)
* Upgrade debian/compat to 7 (no change needed)
[ Arnaud Cornet ]
* New upstream version.
* Merge Michael's work, few changelog fixes
* Add debian/README.source to point to quilt doc
* Depend on debhelper >= 7.0.50~ and use overrides in debian/rules
-- Arnaud Cornet <acornet@debian.org> Sun, 18 Oct 2009 14:01:29 +0200
haproxy (1.3.18-1) unstable; urgency=low
* New Upstream Version (Closes: #534583).
* Add contrib directory in docs
-- Arnaud Cornet <acornet@debian.org> Fri, 26 Jun 2009 00:11:01 +0200
haproxy (1.3.15.7-2) unstable; urgency=low
* Fix build without debian/patches directory (Closes: #515682) using
/usr/share/quilt/quilt.make.
-- Arnaud Cornet <acornet@debian.org> Tue, 17 Feb 2009 08:55:12 +0100
haproxy (1.3.15.7-1) unstable; urgency=low
* New Upstream Version.
* Remove upstream patches:
-use_backend-consider-unless.patch
-segfault-url_param+check_post.patch
-server-timeout.patch
-closed-fd-remove.patch
-connection-slot-during-retry.patch
-srv_dynamic_maxconn.patch
-do-not-pause-backends-on-reload.patch
-acl-in-default.patch
-cookie-capture-check.patch
-dead-servers-queue.patch
-- Arnaud Cornet <acornet@debian.org> Mon, 16 Feb 2009 11:20:21 +0100
haproxy (1.3.15.2-2~lenny1) testing-proposed-updates; urgency=low
* Rebuild for lenny to circumvent pcre3 shlibs bump.
-- Arnaud Cornet <acornet@debian.org> Wed, 14 Jan 2009 11:28:36 +0100
haproxy (1.3.15.2-2) unstable; urgency=low
* Add stable branch bug fixes from upstream (Closes: #510185).
- use_backend-consider-unless.patch: consider "unless" in use_backend
- segfault-url_param+check_post.patch: fix segfault with url_param +
check_post
- server-timeout.patch: consider server timeout in all circumstances
- closed-fd-remove.patch: drop info about closed file descriptors
- connection-slot-during-retry.patch: do not release the connection slot
during a retry
- srv_dynamic_maxconn.patch: dynamic connection throttling api fix
- do-not-pause-backends-on-reload.patch: make reload reliable
- acl-in-default.patch: allow acl-related keywords in defaults sections
- cookie-capture-check.patch: cookie capture is declared in the frontend
but checked on the backend
- dead-servers-queue.patch: make dead servers not suck pending connections
* Add quilt build-dependancy. Use quilt in debian/rules to apply
patches.
-- Arnaud Cornet <acornet@debian.org> Wed, 31 Dec 2008 08:50:21 +0100
haproxy (1.3.15.2-1) unstable; urgency=low
* New Upstream Version (Closes: #497186).
-- Arnaud Cornet <acornet@debian.org> Sat, 30 Aug 2008 18:06:31 +0200
haproxy (1.3.15.1-1) unstable; urgency=low
* New Upstream Version
* Upgrade standards version to 3.8.0 (no change needed).
* Build with TARGET=linux26 on linux, TARGET=generic on other systems.
-- Arnaud Cornet <acornet@debian.org> Fri, 20 Jun 2008 00:38:50 +0200
haproxy (1.3.14.5-1) unstable; urgency=low
* New Upstream Version (Closes: #484221)
* Use debhelper 7, drop CDBS.
-- Arnaud Cornet <acornet@debian.org> Wed, 04 Jun 2008 19:21:56 +0200
haproxy (1.3.14.3-1) unstable; urgency=low
* New Upstream Version
* Add status argument support to init-script to conform to LSB.
* Cleanup pidfile after stop in init script. Init script return code fixups.
-- Arnaud Cornet <acornet@debian.org> Sun, 09 Mar 2008 21:30:29 +0100
haproxy (1.3.14.2-3) unstable; urgency=low
* Add init script support for nbproc > 1 in configuration. That is,
multiple haproxy processes.
* Use 'option redispatch' instead of redispatch in debian default
config.
-- Arnaud Cornet <acornet@debian.org> Sun, 03 Feb 2008 18:22:28 +0100
haproxy (1.3.14.2-2) unstable; urgency=low
* Fix init scripts's reload function to use -sf instead of -st (to wait for
active session to finish cleanly). Also support dash. Thanks to
Jean-Baptiste Quenot for noticing.
-- Arnaud Cornet <acornet@debian.org> Thu, 24 Jan 2008 23:47:26 +0100
haproxy (1.3.14.2-1) unstable; urgency=low
* New Upstream Version
* Simplify DEB_MAKE_INVOKE, as upstream now supports us overriding
CFLAGS.
* Move haproxy to usr/sbin.
-- Arnaud Cornet <acornet@debian.org> Mon, 21 Jan 2008 22:42:51 +0100
haproxy (1.3.14.1-1) unstable; urgency=low
* New upstream release.
* Drop dfsg list and hash code rewrite (merged upstream).
* Add a HAPROXY variable in init script.
* Drop makefile patch, fix debian/rules accordingly. Drop build-dependancy
on quilt.
* Manpage now upstream. Ship upstream's and drop ours.
-- Arnaud Cornet <acornet@debian.org> Tue, 01 Jan 2008 22:50:09 +0100
haproxy (1.3.12.dfsg2-1) unstable; urgency=low
* New upstream bugfix release.
* Use new Homepage tag.
* Bump standards-version (no change needed).
* Add build-depend on quilt and add patch to allow proper CFLAGS passing to
make.
-- Arnaud Cornet <acornet@debian.org> Tue, 25 Dec 2007 21:52:59 +0100
haproxy (1.3.12.dfsg-1) unstable; urgency=low
* Initial release (Closes: #416397).
* The DFSG removes files with GPL-incompabitle license and adds a
re-implementation by me.
-- Arnaud Cornet <acornet@debian.org> Fri, 17 Aug 2007 09:33:41 +0200
|