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
|
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
|