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
|
docker.io (20.10.24+dfsg1-1+deb12u1) bookworm; urgency=high
* Team upload
* Fix CVE-2024-41110: Authz zero length regression
A security vulnerability has been detected in Docker Engine,
which could allow an attacker
to bypass authorization plugins (AuthZ) under specific
circumstances. The base likelihood of this being exploited is low.
(Closes: #1084993)
-- Bastien Roucariès <rouca@debian.org> Sat, 12 Oct 2024 15:19:49 +0000
docker.io (20.10.24+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release [20.10.24]
+ CVE-2023-28840: Encrypted overlay network may be unauthenticated
+ CVE-2023-28841: Encrypted overlay network traffic may be unencrypted
+ CVE-2023-28842: Encrypted overlay network with a single endpoint is
unauthenticated
* Bump golang-github-containerd-fifo-dev to 1.1.0. Fix potential panic.
-- Shengjing Zhu <zhsj@debian.org> Wed, 05 Apr 2023 23:19:59 +0800
docker.io (20.10.23+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release [20.10.23]
* Drop merged btrfs-progs 6.1 patch
-- Shengjing Zhu <zhsj@debian.org> Fri, 20 Jan 2023 16:04:03 +0800
docker.io (20.10.22+dfsg1-2) unstable; urgency=medium
* Team upload.
* No-change rebuild against golang-github-golang-protobuf-1-3 for
testing migration.
-- Shengjing Zhu <zhsj@debian.org> Sat, 14 Jan 2023 17:09:27 +0800
docker.io (20.10.22+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release [20.10.22]
+ Temperory vendor etcd 3.3 library.
* Add patch for btrfs-progs 6.1 (Closes: #1027114)
-- Shengjing Zhu <zhsj@debian.org> Mon, 02 Jan 2023 00:36:21 +0800
docker.io (20.10.21+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release [20.10.21]
- Fixes TestCheckoutGit failure (Closes: #1024506)
- Build-depend on golang-github-armon-circbuf-dev
* Remove ancient NEWS file.
* Update lintian overrides.
-- Felix Geyer <fgeyer@debian.org> Fri, 25 Nov 2022 18:47:24 +0100
docker.io (20.10.19+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release [20.10.19]
- Fixes CVE-2022-36109 (Closes: #1019601)
* Drop test--cli-skip-TestRemoveForce.patch, race condition has been fixed
upstream.
* Adapt watch file to GitHub changes.
-- Felix Geyer <fgeyer@debian.org> Sat, 15 Oct 2022 17:47:37 +0200
docker.io (20.10.17+dfsg1-1) unstable; urgency=medium
* Team upload.
[ Reinhard Tartler ]
* unbreak FTBFS, avoid dependencies on consul
* add missing dependency
[ Arnaud Rebillout ]
* New upstream release [20.10.17]
-- Reinhard Tartler <siretart@tauware.de> Mon, 15 Aug 2022 08:54:41 +0200
docker.io (20.10.14+dfsg1-1) unstable; urgency=medium
[ Felix Geyer ]
* Order docker.service after containerd.service to fix shutdown of
containers (Closes: #989490)
[ Arnaud Rebillout ]
* New upstream release [20.10.14]
-- Arnaud Rebillout <arnaudr@kali.org> Wed, 30 Mar 2022 23:07:00 +0700
docker.io (20.10.11+dfsg1-2) unstable; urgency=medium
* Team upload.
* Fix default seccomp on mips (Closes: #1000318)
-- Shengjing Zhu <zhsj@debian.org> Sat, 04 Dec 2021 17:06:15 +0800
docker.io (20.10.11+dfsg1-1) unstable; urgency=medium
* New upstream release [20.10.11]
-- Arnaud Rebillout <arnaudr@kali.org> Mon, 22 Nov 2021 16:56:50 +0700
docker.io (20.10.10+dfsg1-1) unstable; urgency=medium
* New upstream release [20.10.10]
-- Arnaud Rebillout <arnaudr@kali.org> Tue, 26 Oct 2021 14:22:48 +0700
docker.io (20.10.8+dfsg1-2) unstable; urgency=medium
* Team upload.
[ Shengjing Zhu ]
* Add patch to build against runc 1.0 (Closes: #996166)
-- Anthony Fok <foka@debian.org> Fri, 22 Oct 2021 01:50:50 -0600
docker.io (20.10.8+dfsg1-1) unstable; urgency=medium
* Backport upstream patches to fix the build
* Backport upstream patch to skip a cli test that segfaults
* Drop unused Lintian override (field-too-long)
* Update my email address
* New upstream release [20.10.8]
* Update debian/watch
* Build-Depends += moby-locker-dev, drop obsolete vendoring
* Drop patches applied upstream
* Use leading tabs consistently in d/rules
* Update date format for the cli build time
* Build cli with dh-golang, don't use upstream Makefile anymore
* Use variables for package names in d/rules
* Bump standards version
* tests: Bump debootstrap suite to bullseye
-- Arnaud Rebillout <arnaudr@kali.org> Wed, 22 Sep 2021 13:31:10 +0700
docker.io (20.10.5+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release 20.10.5
Same as 20.10.4 but a patch in docker/cli is reverted to fix hanging in
"docker start --attach" and remove spurious "Unsupported signal: <nil>.
Discarding" messages.
-- Shengjing Zhu <zhsj@debian.org> Wed, 10 Mar 2021 00:53:21 +0800
docker.io (20.10.4+dfsg1-1) unstable; urgency=medium
* Team upload
* New upstream release 20.10.4
* Remove patch which is applied in new upstream version:
cli-build-man-pages-with-go-md2man.patch
* Add patch to skip TestUntarParentPathPermissions which requires root
-- Shengjing Zhu <zhsj@debian.org> Sat, 27 Feb 2021 21:16:16 +0800
docker.io (20.10.3+dfsg1-2) unstable; urgency=medium
* Drop manual run of engine tests
* Update a patch that is now applied upstream
-- Arnaud Rebillout <elboulangero@gmail.com> Wed, 10 Feb 2021 09:13:49 +0700
docker.io (20.10.3+dfsg1-1) unstable; urgency=medium
* Team upload
* New upstream release 20.10.3
+ CVE-2021-21285 Prevent an invalid image from crashing docker daemon
+ CVE-2021-21284 Lock down file permissions to prevent remapped root
from accessing docker state
* Try to run basic-smoke tests in autopkgtest isolation-container
-- Shengjing Zhu <zhsj@debian.org> Tue, 09 Feb 2021 00:26:14 +0800
docker.io (20.10.2+dfsg1-2) unstable; urgency=medium
* Add patch to fix flaky test
* Rename test-related patches for clarity
-- Arnaud Rebillout <elboulangero@gmail.com> Fri, 08 Jan 2021 14:08:51 +0700
docker.io (20.10.2+dfsg1-1) unstable; urgency=medium
* Build-Depends += fvbommel-sortorder-dev, unvendor
* New upstream release [20.10.2]
* Drop patches applied upstream
* Drop selinux build tag, no longer needed
* Move the package to the Go Team
-- Arnaud Rebillout <elboulangero@gmail.com> Thu, 07 Jan 2021 08:40:41 +0700
docker.io (20.10.1+dfsg1-1) unstable; urgency=medium
* Drop obsolete patches for good
* Don't clean the file manager_linux_test.go, patch it instead
* Update patches that are upstream
* Add patch to skip failing test on mips64
* Add dep-3 header to last patch
* Build-Depends += golang-golang-x-term-dev, drop vendoring
* New upstream release [20.10.1]
* Update patches
* Fix gbp.conf debian branch
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 04 Jan 2021 11:25:41 +0700
docker.io (20.10.0+dfsg2-1) unstable; urgency=medium
* Drop hack for oci fixtures, fixed upstream
* No need to clean manager_linux_test
* Use a variable for docker testflags
* No need to export DOCKER_BUILDTAGS
* Depends: Fix incorrect requirement on golang-dbus-dev
* Build-Depends: Make libseccomp-dev explicit
* Drop useless vendored directories
* Drop Build-Depends that are obviously not used anymore
* Group swarmkit Build-Depends for tests, not needed
* Group k8s.io Build-Depends
* Override dh_golang to produce better Built-Using
* Nitpick, simplify a bit dh_install
* Rework BUILDTIME, only needed for cli
* Rework KEEPBUNDLE, only needed for engine
* Nitpick, rename some variables
* Bump dfsg in watch file
* Big rename, build in _build instead of .gopath
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 14 Dec 2020 19:39:22 +0700
docker.io (20.10.0+dfsg1-1) experimental; urgency=medium
* Build-Depends: git is only needed for tests, document that
* Depends: Drop undefined ${perl:Depends}
* Add patch to fix container creation time in tests
* Drop test--skip-TestResumableRequestHeaderTooMuchFailures.patch
* Drop test--skip-TestClientWithRequestTimeout.patch
* Drop test--skip-TestAdapterReadLogs.patch
* Update description for test--skip-pkg-signal-flaky-tests.patch
* Cosmetics in d/watch
* get-orig-source: Remove all the logs regarding the vendor tree
* get-orig-source: Rework to mimic uscan output
* uscan-summary: New helper to parse uscan+get-orig-source logs
* ls-vendor: New helper to quickly list the vendor directories
* real-upstream-version: New (tiny) helper to get original upst version
* helpers/docker: Be a bit more verbose
* helpers/docker: Add description, re-indent
* Cleanup, remove obsolete build deps and Files-Excluded
* Rework exported Go env variables in d/rules
* Simplify GOPATH handling in d/rules
* Add package update instructions to d/README.source
* Move -dev package to golang Section
* New upstream release [20.10.0]
* ls-vendor: More granularity for golang.org
* Vendor golang.org/x/term
-- Arnaud Rebillout <elboulangero@gmail.com> Wed, 09 Dec 2020 14:37:26 +0700
docker.io (20.10.0~rc1+dfsg3-1) experimental; urgency=medium
* Bump standards version
* Mark docker-doc with Multi-Arch: foreign
* Remove ISC license from d/copyright
* Minor updates in d/control
* Add patch to skip test in pbuilder
* Rename the bash-completion patch
* Add moby-term-dev to the docker-dev dependencies
* Vendor armon-go-radix (Closes: #918375)
* Bump dfsg in d/watch
* Fix dockerd path in docker.io.docker.init
* Remove docker/distribution from the MUT
* Fix lintian override in d/source
* Update lintian tags
* Add lintian overrides regarding missing manual pages
-- Arnaud Rebillout <elboulangero@gmail.com> Wed, 02 Dec 2020 13:26:52 +0700
docker.io (20.10.0~rc1+dfsg2-3) experimental; urgency=medium
* Fix my mistakes
-- Arnaud Rebillout <elboulangero@gmail.com> Tue, 01 Dec 2020 08:59:44 +0700
docker.io (20.10.0~rc1+dfsg2-2) experimental; urgency=medium
* Fix cli binary name, it is arch specific
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 30 Nov 2020 21:48:20 +0700
docker.io (20.10.0~rc1+dfsg2-1) experimental; urgency=medium
* Bump containerd version to 1.4.2
* Forbid circular dependencies during build
* Remove commented-out block in d/rule
* Enable part of the patch that disables the cli network tests
* Update the patch for bash completion shebang
* Rework apparmor, recommend it unconditionally
* Install contrib/dockerd-rootless-setuptool.sh
* Suggest rootlesskit
* Conflicts with docker-ce-rootless-extras
* Nitpicks in docker.io.install
* docker.default: Update URLs
* docker.init: Update according to changes upstream
* docker.io.postinst: Add comment and indent
* Replace dh-exec usage with manual renaming in d/rules
* Simplify client installation: no more symlink
* Install bash completion from docker.io.install file
* Remove obsolete golang-github-docker-libnetwork-dev
* Unvendor containerd step 1: Depend on containerd
* Unvendor containerd step 2: Build-Depend on containerd
* Unvendor containerd step 3: Bump dfsg
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 30 Nov 2020 15:48:02 +0700
docker.io (20.10.0~rc1+dfsg1-1) experimental; urgency=medium
* New upstream release [20.10.0~rc1] (Closes: #840829, #974857)
* Bump containerd version to 1.4.1
* Revert dfsg version to 1 in d/watch
* Update d/watch for moby/moby 20.10.0~rc1
* Update d/copyright for {cli,engine} 20.10.0~rc1
* Add MUT components in d/copyright
* Rewrite the gitcommit logic completely, get docker version from control file
* get-orig-source: Rework to support moby tarball + cli as a MUT component
* get-orig-source: Rewrite get_vendor_tree()
* get-orig-source: Log the vendor tree for each component
* get-orig-source: Log the vendor tree left after removal of Files-Excluded
* Completely rework the dependency tree for 20.10.0~rc1
* Drop patches that are obsolete or applied upstream
* Drop patch test--fix-test-errors.patch
* Update patches, rename a few of them
* Add patches to add go.mod files for {cli,engine,libnetwork}
* Add patch to remove shebang from bash completion
* Add containerd patches from Debian's containerd package
* Backport containerd patches from upstream (fix FTBFS moby/buildkit)
* Rework and split the big patch that skips privileged tests
* Drop various hacks in d/rules dh_auto_configure
* New hacks in d/rules dh_auto_configure
* Set GO111MODULE=off to build
* Remove vim-syntax-docker package
* Remove *-integration from docker.io.install
* Update containerd binary names in docker.io.install
* Remove docker-runc symlink, obsolete it seems
* Update libnetwork/ipvs to moby/ipvs in golang-...-docker-dev.install
* Install only the docker.io package in the testbed (rather than @)
* Clean d/gbp.conf, only keep the name of the debian branch
-- Arnaud Rebillout <elboulangero@gmail.com> Fri, 27 Nov 2020 14:09:53 +0700
docker.io (19.03.13+dfsg3-1) unstable; urgency=medium
* d/control: Remove mention to golang-github-theupdateframework-notary-dev
* d/watch: Remove 's{\-ce}{}' from uversionmangle
* d/watch: Use dversionmangle=auto
* Stop vendoring sigs.k8s.io
* Move d/unpack-components to d/helpers
* Minor fix in d/helpers/docker.sh
* Remove old Replaces/Conflicts/Breaks statements
* Document briefly why we keep some vendored directories
* Vendor tonistiigi/fsutil again
* Add my name in d/copyright, after all
* No more split between indep/arch in d/rules
-- Arnaud Rebillout <elboulangero@gmail.com> Fri, 27 Nov 2020 00:08:07 +0700
docker.io (19.03.13+dfsg2-1) unstable; urgency=medium
* Unvendor spf13/{cobra,pflag}
* Add Rules-Requires-Root
* Bump Standards-Version to 4.5.0
* Bump debhelper-compat to 13
* Add a note that unpack-components is now deprecated
* Document a bit how MUT works for docker.io
* Unvendor tonistiigi/{fsutil,units}
* Remove docker/go-events from MUT
* Add copyright mention for moby/buildkit
* get-orig-source: Put components in a variable
* get-orig-source: Allow to specify the version of a component
* Build with containerd 1.3.7
* Disable patches that are not relevant for containerd 1.3.7
* Update patches for containerd 1.3.7
* Add patches for buildkit to build against containerd 1.3.7
* Add patches for cli tests to build against containerd 1.3.7
* Remove 'ambient' from docker build tags
-- Arnaud Rebillout <elboulangero@gmail.com> Thu, 19 Nov 2020 15:29:30 +0700
docker.io (19.03.13+dfsg1-4) unstable; urgency=medium
* Fix FTBFS due to go-md2man v2 (Closes: #973084)
-- Arnaud Rebillout <elboulangero@gmail.com> Tue, 10 Nov 2020 21:31:26 +0700
docker.io (19.03.13+dfsg1-3) unstable; urgency=medium
* Add patch to fix spf13/cobra (tianon) (Closes: #971789)
-- Arnaud Rebillout <elboulangero@gmail.com> Wed, 14 Oct 2020 11:38:00 +0700
docker.io (19.03.13+dfsg1-2) unstable; urgency=medium
* Fix user.GetExecUser interface runc 1.0.0~rc92 (zhsj) (Closes: #970525)
-- Arnaud Rebillout <elboulangero@gmail.com> Tue, 22 Sep 2020 16:21:48 +0700
docker.io (19.03.13+dfsg1-1) unstable; urgency=medium
* Move package build instructions in the right README.source file
* New upstream release [19.03.13]
* Drop build-dep vbom.ml/util, vendor fvbommel/sortorder
* Add upstream patch to fix FTBFS with go 1.15
* lintian-overrides: Drop tag source-contains-empty-directory
* Stop shipping the mkimage contrib scripts (Closes: #969940)
-- Arnaud Rebillout <elboulangero@gmail.com> Fri, 18 Sep 2020 14:35:25 +0700
docker.io (19.03.12+dfsg1-4) unstable; urgency=medium
* Fix build against runc 1.0.0~rc92 (zhsj) (Closes: #969227)
* Update helper to allow giving commands to docker run
* Update README.Debian with build instructions
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 31 Aug 2020 12:46:39 +0700
docker.io (19.03.12+dfsg1-3) unstable; urgency=medium
* Add patch to disable TestRunLabel
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 13 Jul 2020 13:49:29 +0700
docker.io (19.03.12+dfsg1-2) unstable; urgency=medium
* Add upstream patch to silence systemd warning (/var/run → /run)
-- Arnaud Rebillout <elboulangero@gmail.com> Mon, 13 Jul 2020 08:56:49 +0700
docker.io (19.03.12+dfsg1-1) unstable; urgency=medium
* Rework dockerfile, add a helper to use docker to build the package
* d/copyright: Indent and sort a few things
* d/rules: Remove old comments
* d/control: Update my email address in the maintainer field
* New upstream release [19.03.12].
* d/tests/basic-smoke: Debootstrap from buster (Closes: #946313)
* d/tests/basic-smoke: Use systemctl to start/stop docker
* d/tests/basic-smoke: More lines to the tail command
* d/tests/basic-smoke: Use deb.debian.org to debootstrap
* d/tests/basic-smoke: Style nitpicks
* Install dockerd-rootless.sh in usr/share/docker.io/contrib (Closes: #964071)
* d/rules: Silence lintian warnings regarding executable text files
* docker-dev: Install containerd -dev files from build directory
* docker-dev: Re-order the file d/...-dev.install
-- Arnaud Rebillout <elboulangero@gmail.com> Fri, 03 Jul 2020 12:09:20 +0700
docker.io (19.03.11+dfsg1-1) unstable; urgency=medium
* New upstream release [19.03.11].
* Update Files-Excluded list (ie. exclude archive vendoring)
* Update and drop patches
* Use gotest.tools import path in docker cli (without v3)
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Fri, 19 Jun 2020 13:41:28 +0700
docker.io (19.03.7+dfsg1-3) unstable; urgency=medium
* dev: provide "rootless" component (Closes: #960827).
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 17 May 2020 17:07:15 +1000
docker.io (19.03.7+dfsg1-2) unstable; urgency=medium
[ Dmitry Smirnov ]
* Added missing-pre-depends. Thanks, Lintian.
* debian/TODO.Debian --> debian/TODO.
* L:Override "field-too-long Built-Using" on binary package also.
[ Arnaud Rebillout ]
* d/clean: Remove lines that are obsolete.
* d/clean: Update for doc files.
* Add upstream patch to fix panic in libnetwork resolver (Closes: #958312).
* Add patch to skip flaky signal tests.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Tue, 21 Apr 2020 13:32:19 +0700
docker.io (19.03.7+dfsg1-1) unstable; urgency=medium
* New upstream release [19.03.7].
* Drop test--disable-containerizedengine-update-test.patch.
* Unvendor vbom.ml/util and grpc-ecosystem/grpc-opentracing
(now packaged in Debian).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Tue, 14 Apr 2020 13:17:23 +0700
docker.io (19.03.6+dfsg1-4) unstable; urgency=medium
* Do not use bundled "golang-github-stevvooe-ttrpc-dev" (Closes: #956502).
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 13 Apr 2020 22:19:11 +1000
docker.io (19.03.6+dfsg1-3) unstable; urgency=medium
* New patch to disable failing test (Closes: #954727).
* New upstream patch to fix FTBFS with xeipuuv-gojsonschema (>= 1.2.0~).
* Lintian-override for "field-too-long Built-Using".
* DH to version 12.
* Build-Depends:
- golang-github-tinylib-msgp-dev
+ golang-github-xeipuuv-gojsonschema-dev (>= 1.2.0~)
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 11 Apr 2020 18:57:29 +1000
docker.io (19.03.6+dfsg1-2) unstable; urgency=medium
* New upstream patch to fix FTBFS in "libnetwork" (Closes: #952311).
* Build-Depends:
= golang-github-miekg-dns-dev (>= 1.1.26~)
-- Dmitry Smirnov <onlyjob@debian.org> Wed, 26 Feb 2020 11:20:11 +1100
docker.io (19.03.6+dfsg1-1) unstable; urgency=medium
* New upstream release [19.03.6].
* Drop patches applied upstream.
* Vendor containerd-cgroups.
* d/copyright: Remove unused snippets.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Wed, 19 Feb 2020 13:52:28 +0700
docker.io (19.03.5+dfsg1-2) unstable; urgency=medium
[ Dmitry Smirnov ]
* Removed unused "golang-github-rsc-letsencrypt-dev" from Build-Depends.
* Removed unused "golang-github-xenolf-lego-dev" from Build-Depends.
* Build-Depends += "golang-github-codegangsta-cli-dev"
* Don't run Btrfs tests ('chown' is not permitted).
* Removed unused "golang-github-vaughan0-go-ini-dev" fron Build-Depends.
[ Arnaud Rebillout ]
* Build-Depends += "gotestsum", drop related patches
* Drop buildkit patch
* Update patch that disables hcsshim
* Add patch to build against vishvananda/libnetwork 1.1.x
* Add upstream patch to fix test against imdario/mergo 0.3.8
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Thu, 06 Feb 2020 16:00:33 +0700
docker.io (19.03.5+dfsg1-1) unstable; urgency=medium
[ Dmitry Smirnov ]
* Added Conflicts with Docker's vendor packages (docker-ce, containerd.io)
[ Arnaud Rebillout ]
* New upstream release [19.03.5].
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Wed, 18 Dec 2019 17:51:41 +0700
docker.io (19.03.4+dfsg2-2) unstable; urgency=medium
* Removed unused package from Build-Depends.
* Standards-Version: 4.4.1.
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 12 Nov 2019 12:18:22 +1100
docker.io (19.03.4+dfsg2-1) unstable; urgency=medium
* Bump dfsg version to update orig tarball in the pool.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 04 Nov 2019 16:06:27 +0700
docker.io (19.03.4+dfsg1-3) unstable; urgency=medium
[ Dmitry Smirnov ]
* get-orig-source.sh: minor shellcheck correction.
* get-orig-source.sh: consistent/reproducible tarball generation.
* dev: install "libnetwork/ipvs", as required by Kubernetes.
* drop "github.com/marstr/guid" (indirect dependency).
* Un-vendor "golang-github-graylog2-go-gelf-dev".
[ Arnaud Rebillout ]
* Stop vendoring docker-go-metrics.
* Add a patch to fix reverse build-deps against docker/cli.
[ Dmitry Smirnov ]
* tighten build-dep
* disabled unreliable test "TestClientWithRequestTimeout".
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 04 Nov 2019 14:26:10 +0700
docker.io (19.03.4+dfsg1-2) experimental; urgency=medium
[ Arnaud Rebillout ]
* Add patch to fix build against prometheus-client-golang 1.2.1-1
[ Dmitry Smirnov ]
* dev to depend on "golang-github-morikuni-aec-dev" (used in
"pkg/jsonmessage").
* dev: provide "containerd/labels".
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Wed, 30 Oct 2019 12:19:58 +0700
docker.io (19.03.4+dfsg1-1) experimental; urgency=medium
* New upstream release [19.03.4].
* Unvendor a few build dependencies.
* Drop golang-docker-dev transitional package.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Sat, 26 Oct 2019 10:39:45 +0700
docker.io (19.03.3+dfsg1-1) experimental; urgency=medium
* New upstream release [19.03.3].
* Drop & refresh patches.
* Update build dependencies.
* Vendor every dependencies that are missing/outdated in debian.
* Cherry-pick changes from master (18.09.9+dfsg1-4 to 18.09.9+dfsg2-6).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 21 Oct 2019 11:06:43 +0700
docker.io (18.09.9+dfsg2-7) unstable; urgency=medium
[ Arnaud Rebillout ]
* Add patch to fix build against prometheus-client-golang 1.2.1-1
[ Dmitry Smirnov ]
* get-orig-source.sh: consistent/reproducible tarball generation.
* dev/install:
+ containerd/labels
+ libnetwork/ipvs
-- Dmitry Smirnov <onlyjob@debian.org> Thu, 31 Oct 2019 19:22:25 +1100
docker.io (18.09.9+dfsg2-6) unstable; urgency=medium
* (Build-)Depends:
+ golang-github-appc-cni-dev (>= 0.7.1~)
+ golang-github-containerd-go-cni-dev (>= 0.0~git20190904~)
+ golang-github-containernetworking-plugins-dev
+ golang-github-morikuni-aec-dev
* dev: provide few more containerd components.
-- Dmitry Smirnov <onlyjob@debian.org> Fri, 18 Oct 2019 00:05:06 +1100
docker.io (18.09.9+dfsg1-5) unstable; urgency=medium
[ Arnaud Rebillout ]
* Drop unused build depends
[ Dmitry Smirnov ]
* Patch Docker to use jwt-go v3.
* Use golang-github-dgrijalva-jwt-go-dev (not -v3).
* dev: install new "containerd/*" files
(as required by "singularity-container").
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 08 Oct 2019 14:37:25 +1100
docker.io (18.09.9+dfsg1-4) unstable; urgency=medium
* d/control: Break/replace/provide containerd-dev (Closes: #941091)
* d/control: Order and indent a few things
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Wed, 25 Sep 2019 08:07:12 +0700
docker.io (18.09.9+dfsg1-3) unstable; urgency=medium
[ Arnaud Rebillout ]
* d/control: Remove duplicate comma in build depends (Closes: #935488)
* d/control: Standards Version 4.4.0
[ Dmitry Smirnov ]
* Provides += golang-github-docker-go-metrics-dev
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 24 Sep 2019 12:45:51 +1000
docker.io (18.09.9+dfsg1-2) unstable; urgency=medium
* Re-enable engine unit tests again.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 16 Sep 2019 13:35:15 +0700
docker.io (18.09.9+dfsg1-1) unstable; urgency=medium
[ Arnaud Rebillout ]
* New upstream release [18.09.9].
* Disable engine unit tests (tmp, until gotestsum makes it to Debian).
[ Dawid Dziurla ]
* Install fish completions
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 16 Sep 2019 11:18:11 +0700
docker.io (18.09.8+dfsg1-1) unstable; urgency=medium
[ Dmitry Smirnov ]
* New upstream release [18.09.8].
* Tighten various dependencies.
* Update -dev dependencies (for libpod).
* Backport oci/caps from 19.03.2 (for libpod).
* Un-vendor golang-github-ishidawataru-sctp-dev.
* Add upstream patch for libnetwork to build against newer sctp.
* Add upstream patch to build against
golang-github-opencontainers-selinux-dev (>= 1.3.0~).
* No longer disable Go cache to prevent FTBFS with Go 1.12.
[ Arnaud Rebillout ]
* github-golang-docker-docker-dev: fix go-metrics install path.
* github-golang-docker-docker-dev: add replaces/breaks on docker-go-metrics-dev.
* Add patch to fix Debian security presence check (Closes: #925224).
[ Reinhard Tartler ]
* github-golang-docker-docker-dev: add missing sources (Closes: #924257)
* Additional missing sources for openshift/imagebuilder
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Sat, 14 Sep 2019 10:10:55 +0700
docker.io (18.09.1+dfsg1-9) unstable; urgency=medium
[ Dmitry Smirnov ]
* rules: no longer disable Go cache to prevent FTBFS with Go 1.12.
[ Felix Geyer ]
* Cherry-pick upstream commits to fix test failures with golang >= 1.11.6-1+deb10u1
* Add upstream patch for CVE-2019-14271
* Fix build failure with gogo/protobuf >= 1.2
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Wed, 04 Sep 2019 14:54:29 +0700
docker.io (18.09.1+dfsg1-8) unstable; urgency=medium
* Make myself the maintainer, and Dmitry uploader.
(see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=908868)
* Add upstream patches for CVE-2019-13509 (Closes: #932673).
* Add upstream patch for CVE-2019-13139 (Closes: #933002).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 05 Aug 2019 15:27:57 +0700
docker.io (18.09.1+dfsg1-7.1) unstable; urgency=medium
* Non-maintainer upload.
[ Hideki Yamane ]
* upstream site moved to mobyproject.org
[ Arnaud Rebillout ]
* Add patch for CVE-2018-15664 (Closes: #929662).
-- Shengjing Zhu <zhsj@debian.org> Sun, 23 Jun 2019 01:25:10 +0800
docker.io (18.09.1+dfsg1-7) unstable; urgency=medium
* Add patch to revert using iptables-legacy (Closes: #921600).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Mon, 13 May 2019 09:34:45 +0700
docker.io (18.09.1+dfsg1-6) unstable; urgency=medium
* Add patch to fix Debian security presence check (Closes: #925224).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Tue, 16 Apr 2019 09:56:17 +0700
docker.io (18.09.1+dfsg1-5) unstable; urgency=medium
* Install "containerd-shim" as "docker-containerd-shim" (Closes: #920935).
* Update containerd-name patch.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Sat, 02 Feb 2019 10:00:35 +1100
docker.io (18.09.1+dfsg1-4) unstable; urgency=medium
* Updated "containerd" executable name patch;
renamed "containerd-shim" executable (Closes: #920597).
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 28 Jan 2019 10:16:28 +1100
docker.io (18.09.1+dfsg1-3) unstable; urgency=medium
* New patch to fix name of the "containerd" executable (Closes: #920597).
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 27 Jan 2019 23:43:53 +1100
docker.io (18.09.1+dfsg1-2) unstable; urgency=medium
[ Dmitry Smirnov ]
* Standards-Version: 4.3.0.
* Upload to unstable.
[ Arnaud Rebillout ]
* Bump runc requirement to 1.0.0~rc6.
* Add patch to skip flaky test.
* Tidy up patches.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Sat, 26 Jan 2019 10:58:39 +1100
docker.io (18.09.1+dfsg1-1) experimental; urgency=medium
* New upstream release [January 2019].
* Remove obsolete patches, refresh remaining ones.
* New notable patches:
- build against the runc debian package.
- build against google-grpc 1.11.
- attempt to fix mips build.
- disable a test file that fails to build (known issue upstream).
* Remove various build dependencies, add new ones.
* Bump some build dependencies:
- golang-github-coreos-bbolt-dev (>= 1.3.1-coreos.5-3~).
* Vendor some build dependencies:
- docker/licensing (no debian package, no upstream release).
- golang-github-spf13-cobra/pflag-dev (docker has internal fork).
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Tue, 22 Jan 2019 19:48:15 +1100
docker.io (18.06.1+dfsg1-3) unstable; urgency=medium
* Import upstream patch to use iptables-legacy (Closes: #911808).
* Un-vendor opencontainers-runtime-tools.
* Import numerous patches from upstream for go 1.11.
-- Arnaud Rebillout <arnaud.rebillout@collabora.com> Thu, 17 Jan 2019 15:37:54 +1100
docker.io (18.06.1+dfsg1-2) unstable; urgency=medium
* Tighten versioned dependency on "runc".
* dev: install "libnetwork/ipamutils".
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 16 Sep 2018 13:21:33 +1000
docker.io (18.06.1+dfsg1-1) unstable; urgency=medium
[ Dmitry Smirnov ]
* New upstream release [August 2018].
* Upload to unstable (Closes: #906999).
[ Arnaud Rebillout ]
* Cleanup /etc/init/docker.conf (Closes: #907455)
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 11 Sep 2018 14:03:46 +1000
docker.io (18.06.0+dfsg1-1) experimental; urgency=medium
* New upstream release [July 2018].
[ Arnaud Rebillout ]
* get-orig-source: print the list of directories vendored by upstream.
[ Dmitry Smirnov ]
* README.source: noted duration of upstream support.
* README.Debian: added note about restart dilemma.
-- Dmitry Smirnov <onlyjob@debian.org> Fri, 10 Aug 2018 19:07:41 +1000
docker.io (18.03.1+dfsg1-6) unstable; urgency=medium
* Removed obsolete "golang-ed25519-dev" from Build-Depends.
* Standards-Version: 4.1.5.
-- Dmitry Smirnov <onlyjob@debian.org> Wed, 11 Jul 2018 20:15:24 +1000
docker.io (18.03.1+dfsg1-5) unstable; urgency=medium
* New upstream patch to prevent needless calls to `pass` (Closes: #902258).
* Do not automatically restart daemon on upgrade (Closes: #786724).
* Recommends += "needrestart".
"needrestart" prompts to restart "docker" daemon on upgrade. This way
running containers won't be killed on upgrade until user choses to
restart Docker.
Not restarting Docker on upgrade may break CLI when it disagrees with
running daemon regarding API version.
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 02 Jul 2018 14:56:46 +1000
docker.io (18.03.1+dfsg1-4) unstable; urgency=medium
* Suggests += "e2fsprogs, xfsprogs" (Closes: #887222).
* rules: fixed test failure on binary-indep build (Closes: #902206).
Thanks, Santiago Vila.
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 24 Jun 2018 23:22:51 +1000
docker.io (18.03.1+dfsg1-3) unstable; urgency=medium
[ Dmitry Smirnov ]
* Replaced upstream SysV init file with an improved one.
* --remove-pidfile on stop (Closes: #764921)
* don't fail when removed (Closes: #841282)
* fixed exit status:
+ don't fail to stop when already stopped
+ don't fail to start when already started
* removed useless check_init()
Thanks, Sam Morris.
* postinst: create "docker" group when needed (Closes: #821078).
* README.source: added comment to clarify upstream version numbering.
Thanks, Tianon Gravi
* README.source: added link describing upstream life cycle & release
policy. Thanks, Tianon Gravi.
[ Arnaud Rebillout ]
* Added myself to uploaders.
* Bumped compat to 11 to allow installling the systemd socket
file automatically with dh_installsystemd.
* Installed systemd socket through dh_installsystemd.
-- Dmitry Smirnov <onlyjob@debian.org> Thu, 21 Jun 2018 21:27:32 +1000
docker.io (18.03.1+dfsg1-2) unstable; urgency=medium
[ Dmitry Smirnov ]
* Upload to unstable.
* Un-bundle "googleapis-gnostic-dev" and "docker-notary-dev".
* Removed "golang-github-hashicorp-consul-dev" from Build-Depends.
[ Arnaud Rebillout ]
* Fix bash completion install.
* d/control: depend on golang-any.
* d/README.source: re-write part about docker-ce upstream workflow.
* Set required version for imdario-mergo and hashicorp-memberlist.
-- Dmitry Smirnov <onlyjob@debian.org> Wed, 20 Jun 2018 23:40:47 +1000
docker.io (18.03.1+dfsg-1) experimental; urgency=medium
* New upstream release [April 2018].
* rules:
+ properly pass daemon version.
+ re-work override_dh_auto_configure with important fixes.
* New patch to disable unreliable TestAdapterReadLogs.
* Use packaged "tini", don't build it.
Thanks, Arnaud Rebillout.
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 19 Jun 2018 13:43:57 +1000
docker.io (17.12.1+dfsg-4) experimental; urgency=medium
* golang-github-docker-docker-dev:
+ install only selected "libnetwork" components.
+ install missing "docker/cli" components.
+ install "docker/docker/cli".
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 18 Jun 2018 19:32:51 +1000
docker.io (17.12.1+dfsg-3) experimental; urgency=medium
* Removed versioning from -dev Breaks/Replaces: libnetwork-dev
(Closes: #901694).
* Build with consistent tags "apparmor seccomp selinux ambient"
(Closes: #901743).
Thanks, Laurent Bigonville.
* New patch to fix FTBFS on mips* architectures.
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 18 Jun 2018 12:05:10 +1000
docker.io (17.12.1+dfsg-2) experimental; urgency=medium
* New patch to disable TestGetRootUIDGID, failing in sbuild.
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 16 Jun 2018 21:31:51 +1000
docker.io (17.12.1+dfsg-1) experimental; urgency=medium
* Team upload.
* New upstream release [February 2018] (Closes: #850753).
* Restart on upgrade, like most daemons (Closes: #792327).
Docker's upgrade tip from 17.12.0 release notes:
"You must stop all containers and plugins BEFORE upgrading".
* New multi-upstream-tarball (MUT) layout, building all docker components
(containerd, libnetwork, swarmkit) at once;
incorporated binaries of docker-containerd and libnetwork.
* docker-dev to provide libnetwork-dev (a part of Docker).
* New patches to build on go-1.10; build with latest Go compiler.
* Declared myself as Maintainer.
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 16 Jun 2018 20:05:48 +1000
docker.io (1.13.1~ds3-4) unstable; urgency=medium
* Build with go-1.7 as later versions cause [archive,tarsum] failures
(Closes: #901317).
* Re-enabled [archive,tarsum] tests.
* Build-Depends:
= golang-1.7-go | golang-go (>= 2:1.6~)
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 12 Jun 2018 00:02:27 +1000
docker.io (1.13.1~ds3-3) unstable; urgency=medium
* Removed invalid team email from Uploaders (Closes: #899285).
* B-D: "libbtrfs-dev | btrfs-progs (<< 4.16.1~)" (Closes: #898876).
Thanks, Dimitri John Ledkov.
* (Build-)Depends:
- removed unused "golang-github-aanand-compose-file-dev".
- removed needless versioning and unknown alternatives.
* dev: install "runconfig" (used by "github.com/aanand/compose-file").
* repack.sh: use correct compression type, depending on file name.
* watch file to version 4; updated "repack.sh".
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 10 Jun 2018 19:49:42 +1000
docker.io (1.13.1~ds3-2) unstable; urgency=medium
* Team upload.
* Install -dev files from build directory.
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 09 Jun 2018 20:20:53 +1000
docker.io (1.13.1~ds3-1) unstable; urgency=medium
* Team upload.
[ Tianon Gravi ]
* Remove gccgo support.
Removed upstream in commit eda90f63446253f97d2011926555306f2417d208
(https://github.com/moby/moby/pull/25978)
* Update upstream-version-gitcommits with more upstream versions
[ Dmitry Smirnov ]
* New patch to fix CVE-2017-16539 (Closes: #900140).
* New patch to remove 10 seconds delay on purge (Closes: #853258).
* debhelper to version 11; compat to version 10.
* copyright format URL to HTTPS; bump copyright years.
* Standards-Version: 4.1.4.
* Vcs URLs to Salsa.
* Included "cliconfig" to -dev package (used by "gitlab-runner").
* Included "reference" and "registry" into -dev package (used by "nomad").
* Removed obsolete "golang-github-docker-engine-api-dev" from Build-Depends.
* Use more private libraries to fix build and break circular dependencies:
+ github.com/docker/swarmkit
+ github.com/docker/libnetwork
+ github.com/docker/go-events
+ github.com/docker/go-metrics
* Removed Upstart .conf file.
* rules:
+ better clean, remove generated file(s).
+ fixed "sirupsen/logrus" imports.
+ DH_GOLANG_GO_GENERATE = 1
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 09 Jun 2018 14:50:13 +1000
docker.io (1.13.1~ds2-3) unstable; urgency=medium
* Switch from "runc" to "docker-runc" and "containerd" to
"docker-containerd", removing prefix-removing patch
(Closes: #877329, #877892)
* Update patches, especially test-disablers
-- Tianon Gravi <tianon@debian.org> Sat, 14 Oct 2017 08:58:11 -0700
docker.io (1.13.1~ds1-2) unstable; urgency=medium
* Make test suite pass by using assorted patches to fix or disable
tests that don't work under pbuilder. (Closes: #858269)
* Suppress some unfixable Lintian warnings.
* Verify CVE-2016-9962 is fixed. (Closes: #850952)
-- Tim Potter <tpot@hpe.com> Wed, 07 Jun 2017 11:43:14 +1000
docker.io (1.13.1~ds1-1) unstable; urgency=medium
* New upstream release.
-- Tim Potter <tpot@hpe.com> Wed, 24 May 2017 11:44:10 +1000
docker.io (1.13.0~ds1-3) unstable; urgency=medium
* Add api and client directories to dev package.
-- Tim Potter <tpot@hpe.com> Mon, 24 Apr 2017 16:02:32 +1000
docker.io (1.13.0~ds1-2) unstable; urgency=medium
* Re-enable logfiles.com logging support after upstream license
change.
* Run nuke-graph-directory.sh using bash instead of regular sh.
* Fix dockerd location for sysvinit and upstart scripts. (Closes: #858249)
-- Tim Potter <tpot@hpe.com> Tue, 28 Mar 2017 15:41:55 +1100
docker.io (1.13.0~ds1-1) experimental; urgency=medium
[ Paul Tagliamonte ]
* Remove myself as maintainer, and swap out tpot. Sadly, these days, I'm
mostly just in the way, and not actually helping all that much with
the Docker packaging. My last upload was basically forever ago, and
tianon and tpot have been doing all the work since than. As such, I'm
going to make an unilateral executive decision to tell everyone who
listens to actually just listen to tpot. I plan to continue to be around in
the form of cruft and chaos monkey. You should also listen to tianon.
[ Tianon Gravi ]
* Update basic-smoke test with "set -x" for debuggability and proper Depends
* Build from within GOPATH so Go packages are resolved properly
* Split "dh_auto_build-arch" from "dh_auto_build-indep"
* Update "debian/watch" to use "uscan.tianon.xyz" so older versions are still
easily fetchable without excess work outside uscan
* Fix d/copyright text about Apache version 2.0 being in
"/usr/share/common-licenses/GPL-2" (Closes: #835440); thanks cascardo!
* Add Tim Potter to Uploaders ♥
* Add a bit more formatting to README.Debian (and a short intro to explain
what kinds of things this file includes)
* Add an explicit note about "systemd.legacy_systemd_cgroup_controller=yes"
in README.Debian (Closes: #843530)
* Add explicit new "golang-golang-x-oauth2-google-dev" package to Depends
[ Tim Potter ]
* Add missing "golang-github-docker-go-events-dev" B-D (Closes: #850793)
* New upstream version.
* Refresh patches and remove obsolete ones.
* Remove logentries.com log driver as upstream module is unlicensed.
-- Tianon Gravi <tianon@debian.org> Fri, 19 Aug 2016 12:52:55 -0700
docker.io (1.11.2~ds1-6) unstable; urgency=medium
[ Tianon Gravi ]
* Add DEP-3 headers for "skip-racy-unit-tests.patch"
* Add a note about "check-config.sh" to README.Debian; thanks Tincho!
* Add "docker-doc" to Suggests (Closes: #831748); thanks Ben!
* Remove "lxc" from Suggests (no longer a supported execution backend)
[ Nicolas Braud-Santoni ]
* Fix /etc/docker permissions (Closes: #831324)
-- Tianon Gravi <tianon@debian.org> Wed, 20 Jul 2016 16:34:52 -0700
docker.io (1.11.2~ds1-5) unstable; urgency=medium
* Skip racy "TestRunCommandWithOutputAndTimeoutKilled" during build (see also
https://github.com/docker/docker/issues/22965)
-- Tianon Gravi <tianon@debian.org> Tue, 12 Jul 2016 07:46:35 -0700
docker.io (1.11.2~ds1-4) unstable; urgency=medium
[ Tianon Gravi ]
* Add new script to generate Build-Depends based on "go list" instead of
"hack/vendor.sh" (and update Build-Depends using it)
* Update "/etc/default/docker" text to aggressively discourage use, linking to
upstream's documentation for the recommended alternatives
("/etc/docker/daemon.json" and systemd drop-ins)
* Update gbp.conf for pristine-tar usage now that we're no longer multi-orig
* Remove "/var/lib/docker" upon purge (Closes: #739257)
[ Dmitry Smirnov ]
* Add support for DEB_BUILD_OPTIONS=nocheck in debian/rules
-- Tianon Gravi <tianon@debian.org> Mon, 11 Jul 2016 22:09:01 -0700
docker.io (1.11.2~ds1-3) unstable; urgency=medium
* Team upload.
* Updated "skip-privileged-unit-tests.patch" to skip more privileged
tests in order to fix FTBFS in pbuilder.
* Install "opts" directory to -dev package.
-- Dmitry Smirnov <onlyjob@debian.org> Sat, 09 Jul 2016 13:49:02 +1000
docker.io (1.11.2~ds1-2) unstable; urgency=medium
* Add Tim Potter (tpot) and Dmitry Smirnov (onlyjob) to debian/copyright; they
were instrumental in getting 1.11 into the archive!
* Fix golang-github-docker-docker-dev install location (Closes: #830478);
thanks nicoo!
-- Tianon Gravi <tianon@debian.org> Fri, 08 Jul 2016 08:47:44 -0700
docker.io (1.11.2~ds1-1) unstable; urgency=medium
* Update to 1.11.2 upstream release
(Closes: #806887, #820149, #822628, #812838)
* Add NEWS file describing the AUFS issue and the unfortunate possible
"solutions" (Closes: #799386, #805725)
* Add "/etc/docker" to the directories explicitly installed by the package
to help combat issues like #806261
* Update "Homepage" to "dockerproject.org" (versus ".com" which now redirects)
* Update "Vcs-Browser" to use https
* Shrink the Ubuntu delta by pulling in many of the changes
* Replace "btrfs-tools" relations with "btrfs-progs" (Closes: #824833)
* Adjust "repack.sh" to allow keeping minor bits of vendor/
* Fix bad URL in README (Closes: #816844); thanks Clint!
* Move documentation to dedicated "docker-doc" package
* Refresh patches, add minor patch to get unit tests running
* Use gccgo on non-golang architectures (Closes: #785093)
* Use "dh-golang" to calculate "Built-Using" more accurately
* Add simple "basic-smoke" DEP8 test
-- Tianon Gravi <tianon@debian.org> Mon, 04 Jul 2016 09:59:44 -0700
docker.io (1.8.3~ds1-2) unstable; urgency=medium
* Move "overlay" higher in priority (Closes: #799087)
* Adjust "native.cgroupdriver" to default to "cgroupfs" (Closes: #798778)
-- Tianon Gravi <tianon@debian.org> Wed, 04 Nov 2015 00:09:02 -0800
docker.io (1.8.3~ds1-1) unstable; urgency=medium
* Update to 1.8.3 upstream release (CVE-2014-8178, CVE-2014-8179)
-- Tianon Gravi <tianon@debian.org> Thu, 29 Oct 2015 19:40:51 -0700
docker.io (1.8.2~ds1-2) unstable; urgency=medium
* Swap Build-Depends order to appease buildds (Closes: #803136)
-- Tianon Gravi <tianon@debian.org> Thu, 29 Oct 2015 07:23:10 -0700
docker.io (1.8.2~ds1-1) unstable; urgency=medium
* Update to 1.8.2 upstream release
* Rename golang-docker-dev package to golang-github-docker-docker-dev
* Add SELinux support (Closes: #799620)
-- Tianon Gravi <tianon@debian.org> Wed, 28 Oct 2015 14:21:00 -0700
docker.io (1.7.1~dfsg1-1) unstable; urgency=medium
* Update to 1.7.1 upstream release
* Remove patches applied upstream; refresh other patches
* Update Build-Depends
-- Tianon Gravi <tianon@debian.org> Wed, 26 Aug 2015 10:13:48 -0700
docker.io (1.6.2~dfsg1-2) unstable; urgency=medium
* Add DEP8 tests
- integration: runs upstream's integration tests
* Replace "code.google.com/p/go.net" with canonical "golang.org/x/net"
(Closes: #789736)
-- Tianon Gravi <admwiggin@gmail.com> Wed, 01 Jul 2015 07:45:19 -0600
docker.io (1.6.2~dfsg1-1) unstable; urgency=medium
* Update to 1.6.2 upstream release
* Update deps in d/control to match upstream's hack/vendor.sh specifications
-- Tianon Gravi <admwiggin@gmail.com> Thu, 21 May 2015 00:47:43 -0600
docker.io (1.6.1+dfsg1-2) unstable; urgency=medium
* Add --no-restart-on-upgrade to dh_installinit so that we don't force
a stop on upgrade, which can cause other units to fall over. Many thanks
to Michael Stapelberg (sECuRE) for the tip!
-- Paul Tagliamonte <paultag@debian.org> Sun, 10 May 2015 13:02:54 -0400
docker.io (1.6.1+dfsg1-1) unstable; urgency=high
* Update to 1.6.1 upstream release (Closes: #784726)
- CVE-2015-3627
Insecure opening of file-descriptor 1 leading to privilege escalation
- CVE-2015-3629
Symlink traversal on container respawn allows local privilege escalation
- CVE-2015-3630
Read/write proc paths allow host modification & information disclosure
- CVE-2015-3631
Volume mounts allow LSM profile escalation
-- Tianon Gravi <admwiggin@gmail.com> Fri, 08 May 2015 17:57:10 -0600
docker.io (1.6.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
* Backport PR 12943 to support golang-go-patricia 2.*
* Remove convenience copies of cgroupfs-mount in init.d / upstart scripts
(Re: #783143)
-- Tianon Gravi <admwiggin@gmail.com> Tue, 05 May 2015 15:10:49 -0600
docker.io (1.6.0+dfsg1-1~exp1) experimental; urgency=medium
* Update to 1.6.0 upstream release
* Adjust "repack.sh" to be more tolerant of "dfsg" suffixes
-- Tianon Gravi <admwiggin@gmail.com> Thu, 16 Apr 2015 18:00:21 -0600
docker.io (1.6.0~rc7~dfsg1-1~exp1) experimental; urgency=low
* Update to 1.6.0-rc7 upstream release
-- Tianon Gravi <admwiggin@gmail.com> Wed, 15 Apr 2015 19:35:46 -0600
docker.io (1.6.0~rc4~dfsg1-1) experimental; urgency=low
[ Tianon Gravi ]
* Update to 1.6.0-rc4 upstream release
- drop golang 1.2 support (no longer supported upstream)
- update Homepage to https://dockerproject.com
- add check-config.sh to /usr/share/docker.io/contrib
- add "distribution" as a new multitarball orig
- backport auto "btrfs_noversion" patch from
https://github.com/docker/docker/pull/12048
(simplifying our logic for detecting whether to use it)
- switch from dh-golang to direct install since we're not actually using the
features it offers (due to upstream's build system)
- enable "docker.service" on boot by default for restart policies to work
[ Felipe Sateler ]
* Add Built-Using for glibc (Closes: #769351).
-- Tianon Gravi <admwiggin@gmail.com> Mon, 06 Apr 2015 17:11:33 -0600
docker.io (1.5.0~dfsg1-1) experimental; urgency=low
* Update to 1.5.0 upstream release (Closes: #773495)
* Remove several patches applied upstream!
- 9637-fix-nuke-bashism.patch
- enable-non-amd64-arches.patch
* Fix btrfs-tools handling to allow for building with btrfs-tools < 1.16.1
-- Tianon Gravi <admwiggin@gmail.com> Tue, 10 Mar 2015 22:58:49 -0600
docker.io (1.3.3~dfsg1-2) unstable; urgency=medium
* Add fatal-error-old-kernels.patch to make Docker refuse to start on old,
unsupported kernels (Closes: #774376)
* Fix dh_auto_clean to clean up after the build properly, especially to avoid
FTBFS when built twice (Closes: #774482)
-- Tianon Gravi <admwiggin@gmail.com> Sat, 03 Jan 2015 00:11:47 -0700
docker.io (1.3.3~dfsg1-1) unstable; urgency=medium
[ Tianon Gravi ]
* Update to 1.3.3 upstream release (Closes: #772909)
- Fix for CVE-2014-9356 (Path traversal during processing of absolute
symlinks)
- Fix for CVE-2014-9357 (Escalation of privileges during decompression of
LZMA (.xz) archives)
- Fix for CVE-2014-9358 (Path traversal and spoofing opportunities presented
through image identifiers)
* Fix bashism in nuke-graph-directory.sh (Closes: #772261)
[ Didier Roche ]
* Support starting systemd service without /etc/default/docker
(Closes: #770293)
-- Tianon Gravi <admwiggin@gmail.com> Thu, 18 Dec 2014 21:54:12 -0700
docker.io (1.3.2~dfsg1-1) unstable; urgency=high
* Severity is set to high due to the sensitive nature of the CVEs this
upload fixes.
* Update to 1.3.2 upstream release
- Fix for CVE-2014-6407 (Archive extraction host privilege escalation)
- Fix for CVE-2014-6408 (Security options applied to image could lead
to container escalation)
* Remove Daniel Mizyrycki from Uploaders. Thanks for all your work!
-- Paul Tagliamonte <paultag@debian.org> Mon, 24 Nov 2014 19:14:28 -0500
docker.io (1.3.1~dfsg1-2) unstable; urgency=medium
* Remove deprecated /usr/bin/docker.io symlink
- added as a temporary shim in 1.0.0~dfsg1-1 (13 Jun 2014)
- unused by package-installed files in 1.2.0~dfsg1-1 (13 Sep 2014)
-- Tianon Gravi <admwiggin@gmail.com> Fri, 07 Nov 2014 13:11:34 -0700
docker.io (1.3.1~dfsg1-1) unstable; urgency=high
* Update to 1.3.1 upstream release
- fix for CVE-2014-5277
- https://groups.google.com/d/topic/docker-user/oYm0i3xShJU/discussion
-- Tianon Gravi <admwiggin@gmail.com> Mon, 03 Nov 2014 08:26:29 -0700
docker.io (1.3.0~dfsg1-1) unstable; urgency=medium
* Updated to 1.3.0 upstream release.
* Enable systemd socket activation (Closes: #752555).
-- Tianon Gravi <admwiggin@gmail.com> Fri, 17 Oct 2014 00:56:07 -0600
docker.io (1.2.0~dfsg1-2) unstable; urgency=medium
* Added "golang-docker-dev" package for the reusable bits of Docker's source.
-- Tianon Gravi <admwiggin@gmail.com> Thu, 09 Oct 2014 00:08:11 +0000
docker.io (1.2.0~dfsg1-1) unstable; urgency=medium
* Updated to 1.2.0 upstream release (Closes: #757183, #757023, #757024).
* Added upstream man pages.
* Updated bash and zsh completions to be installed as "docker" and "_docker".
* Updated init scripts to also be installed as "docker".
* Fixed "equivalent" typo in README.Debian (Closes: #756395). Thanks Reuben!
* Removed "docker.io" mention in README.Debian (Closes: #756290). Thanks
Olivier!
-- Tianon Gravi <admwiggin@gmail.com> Sat, 13 Sep 2014 11:43:17 -0600
docker.io (1.0.0~dfsg1-1) unstable; urgency=medium
* Updated to 1.0.0 upstream release. Huzzah!
* I've removed what is commonly called a `button' of patches against
the docker package. Exact patches:
- bash-completion-docker.io.patch
- systemd-docker.io.patch
- sysvinit-provides-docker.io.patch
- zsh-completion-docker.io.patch
- mkimage-docker.io.patch
* I know y'all are guessing why; and the answer's pretty simple -- we're
no longer docker.io(1). Since the src:docker package now ships wmdocker(1),
we can safely declare a breaks/replaces on the pre-wmdocker version of the
package, allowing existing users to safely update, both src:docker and
src:docker.io side. This brings us into line with other distros, which
now ship wmdocker(1) and docker(1).
* As a stop-gap, I'm still shipping a docker.io(1) symlink to allow
migration away.
-- Paul Tagliamonte <paultag@debian.org> Fri, 13 Jun 2014 21:04:53 -0400
docker.io (0.11.1~dfsg1-1) unstable; urgency=medium
[ Paul Tagliamonte ]
* Use EnvironmentFile with the systemd unit file. (Closes: #746774)
* Patch out version checking code. (Closes: #747140)
* Remove all host checking for non-amd64 host arches. Let docker build
and run on all platforms now. (Closes: #747139, #739914)
[ Tianon Gravi ]
* Updated to 0.11.1 upstream release.
* Added backported upstream patch for removing RemoteAddr assumptions
that cause events to not be delivered to more than one unix socket
listener.
-- Tianon Gravi <admwiggin@gmail.com> Fri, 09 May 2014 17:30:45 -0400
docker.io (0.9.1~dfsg1-2) unstable; urgency=medium
* Added upstream apparmor patch to fix newer apparmor versions (such as the
version appearing in Ubuntu 14.04).
* Added mkimage-* docker.io binary name patches (Closes: #740855).
-- Tianon Gravi <admwiggin@gmail.com> Tue, 08 Apr 2014 23:19:08 -0400
docker.io (0.9.1~dfsg1-1) unstable; urgency=medium
* Updated to 0.9.1 upstream release (Closes: #743424).
* Added cgroupfs-mount dependency (Closes: #742641).
* Added Suggests entries for optional features, chiefly lxc (Closes: #742081).
* Added notes about "root-equivalence" to README.Debian (Closes: #742387).
-- Tianon Gravi <admwiggin@gmail.com> Thu, 03 Apr 2014 21:38:30 -0400
docker.io (0.9.0+dfsg1-1) unstable; urgency=medium
* Updated README.Debian to not be quite so outdated (Closes: #740850).
* Updated to 0.9.0 upstream release.
-- Tianon Gravi <admwiggin@gmail.com> Tue, 11 Mar 2014 22:24:31 -0400
docker.io (0.8.1+dfsg1-1) unstable; urgency=medium
* Updated to 0.8.1 upstream release.
-- Tianon Gravi <admwiggin@gmail.com> Tue, 25 Feb 2014 20:56:31 -0500
docker.io (0.8.0+dfsg1-2) unstable; urgency=medium
[ Tianon Gravi ]
* Added more license notes to debian/copyright (Closes: #738627).
-- Tianon Gravi <admwiggin@gmail.com> Sat, 15 Feb 2014 17:51:58 -0500
docker.io (0.8.0+dfsg1-1) unstable; urgency=medium
[ Prach Pongpanich ]
* Added zsh completion.
[ Tianon Gravi ]
* Updated to 0.8.0 upstream release.
* Added vim syntax files in new vim-syntax-docker package.
* Added note about minimum recommended kernel version to Description.
* Added contrib/*-integration files in /usr/share/docker.io/contrib.
-- Tianon Gravi <admwiggin@gmail.com> Mon, 10 Feb 2014 20:41:10 -0500
docker.io (0.7.6+dfsg1-1) unstable; urgency=medium
[ Johan Euphrosine ]
* Updated to 0.7.6.
* Added dependency to gocapability.
* Clean patches.
[ Tianon Gravi ]
* Added contrib/mk* scripts from upstream into /usr/share/docker.io/contrib
(Closes: #736068).
* Added upstream udev rules file to stop device-mapper devices and mounts from
appearing in desktop environments through udisks.
-- Johan Euphrosine <proppy@google.com> Wed, 22 Jan 2014 22:50:47 -0500
docker.io (0.7.1+dfsg1-1) unstable; urgency=medium
[ Prach Pongpanich ]
* Fixed "docker: command not found" errors while using bash tab completion
(Closes: #735372).
[ Tianon Gravi ]
* Updated to 0.7.1 upstream release (while we wait for gocapability to be
packaged).
* Added xz-utils recommend which is required for decompressing certain images
from the index.
-- Tianon Gravi <admwiggin@gmail.com> Wed, 15 Jan 2014 20:22:34 -0500
docker.io (0.6.7+dfsg1-3) unstable; urgency=medium
* Fixed FTBFS on non-amd64 platforms by setting the correct GOPATH.
* Fixed issues with Docker finding a valid dockerinit (Closes: #734758).
* Added aufs-tools dependency.
-- Tianon Gravi <admwiggin@gmail.com> Thu, 09 Jan 2014 20:10:20 -0500
docker.io (0.6.7+dfsg1-2) unstable; urgency=medium
* Added iptables dependency required for Docker to start.
* Added ca-certificates recommend required for pulling from the index.
-- Tianon Gravi <admwiggin@gmail.com> Wed, 08 Jan 2014 19:14:02 -0500
docker.io (0.6.7+dfsg1-1) unstable; urgency=medium
* Initial release (Closes: #706060, #730569)
* Document missing licenses in the source tree. Bad, paultag. Thanks
alteholz.
-- Paul Tagliamonte <paultag@debian.org> Tue, 07 Jan 2014 21:06:10 -0500
|