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
|
podman (5.4.1+ds1-1) unstable; urgency=medium
[Paul Holzinger]
* debian/rules: set "Build Origin" field to track distro origin
[Reinhard Tartler]
* New upstream release
* system-tests: re-enable tar tests, but ignore a basic timeout-related
test. Needs more investigation.
* No longer enable systemd system *and* user services, such as
podman.{service,socket}, podman-auto-update.timer,
podman-clean-transient.service, etc. For rationale and background,
please refer to debian/NEWS, Closes: #1095048, 1095221, 1098808
-- Reinhard Tartler <siretart@tauware.de> Thu, 20 Mar 2025 09:36:49 -0400
podman (5.4.0+ds1-1) unstable; urgency=medium
* New upstream release
* Refresh patches, drop patches merged upstream
* Tighten build dependencies on containers/{storage,image,common,buildah}
-- Reinhard Tartler <siretart@tauware.de> Sun, 16 Feb 2025 08:51:11 -0500
podman (5.3.2+ds1-1) unstable; urgency=medium
* New upstream release
* debian/control: tighten dependencies
Build against build 1.38.1 which includes a TOCTOU fix: CVE-2024-11218
* Recommend criu and libcriu. This is required for podman snapshot features
to work.
-- Reinhard Tartler <siretart@tauware.de> Mon, 27 Jan 2025 06:57:58 -0500
podman (5.3.1+ds1-7) unstable; urgency=medium
* autopkgtest: Make sure that containers-storage is present
* Come up with better names for the integration tests
* Revise some integration test skips
* Drop tolerate-lchown.patch
* Drop the disable system_dial_stdio test
-- Reinhard Tartler <siretart@tauware.de> Tue, 10 Dec 2024 13:44:53 -0500
podman (5.3.1+ds1-6) unstable; urgency=medium
* localintegration tests: Rename helper variable to GINKGO_EXTRA_FLAGS
* integration-tests: Ignore os.Lchown failures
-- Reinhard Tartler <siretart@tauware.de> Fri, 06 Dec 2024 08:13:07 -0500
podman (5.3.1+ds1-5) unstable; urgency=medium
* Automatically retry flaky tests
* Pass BUILDTAGS with spaces instead of ','
* Add rootless integration tests
-- Reinhard Tartler <siretart@tauware.de> Thu, 05 Dec 2024 09:46:34 -0500
podman (5.3.1+ds1-4) unstable; urgency=medium
* autopkgtest/e2e: Bump total timeout 20m -> 90m
* Rename patches
-- Reinhard Tartler <siretart@tauware.de> Mon, 02 Dec 2024 09:00:49 -0500
podman (5.3.1+ds1-3) unstable; urgency=medium
* e2e integration tests: double the default timeout
* builtin-tests: Set buildtags to expand test coverage
-- Reinhard Tartler <siretart@tauware.de> Sun, 01 Dec 2024 08:53:39 -0500
podman (5.3.1+ds1-2) unstable; urgency=medium
* Remove a number of redundant build-dependencies
* autopkgtest:
- Restrict qemu tests to amd64
- Enable built-in tests
- Enable e2e tests
- Split out and expand patches for e2e tests
* Fix testdata installation
-- Reinhard Tartler <siretart@tauware.de> Sat, 30 Nov 2024 17:49:45 -0500
podman (5.3.1+ds1-1) unstable; urgency=medium
* new upstream release
* autopkgtest/builtin-tests: disable to workaround #1088235
-- Reinhard Tartler <siretart@tauware.de> Mon, 25 Nov 2024 11:26:43 -0500
podman (5.3.0+ds1-3) unstable; urgency=medium
* Update patches to disable shell completion system tests
-- Reinhard Tartler <siretart@tauware.de> Sun, 17 Nov 2024 10:05:42 -0500
podman (5.3.0+ds1-2) experimental; urgency=medium
* Merge in lost fixes to system tests from unstable
-- Reinhard Tartler <siretart@tauware.de> Fri, 15 Nov 2024 11:51:57 -0500
podman (5.3.0+ds1-1) experimental; urgency=medium
* New upstream release.
* Tighten build dependencies
* refresh patches
* build-depend on golang-github-kevinburke-ssh-config-dev
* Normalize fields with wrap-and-sort
* TestUnitDirs: Skip when CLONE_NEWUSER fails
-- Reinhard Tartler <siretart@tauware.de> Thu, 14 Nov 2024 10:56:37 -0500
podman (5.2.5-1) unstable; urgency=medium
* New upstream release.
* Refresh patches
* tests/localsystem: Unbreak systemd unit file generation
* Bump dependency on buildah, containers/storage,
Fixes: CVE-2024-9675, CVE-2024-9676
* fixes to autopkgtest/localsystem:
- skip test 'podman network reload' to workaround #1085953
- add missing dependencies (build-essential, libsystemd-dev)
- Backport patches from upstream to fix timezone related test failures
-- Reinhard Tartler <siretart@tauware.de> Fri, 25 Oct 2024 17:06:06 -0400
podman (5.2.4+ds1-1) unstable; urgency=medium
* New upstream release
* Tighten build-depends on buildah, container/common
Fixes: CVE-2024-9407, CVE-2024-9341
-- Reinhard Tartler <siretart@tauware.de> Thu, 17 Oct 2024 05:46:27 -0400
podman (5.2.3+ds1-4) unstable; urgency=medium
* Add missing test dependencies
* disable e2e tests for now
-- Reinhard Tartler <siretart@tauware.de> Tue, 15 Oct 2024 05:57:52 -0400
podman (5.2.3+ds1-3) unstable; urgency=medium
* Make buildtime display properly in 'podman version'
* Suggest installation of containernetworking-plugins
* test/system: ignore some tests that are broken on debian
* Run e2e and system tests as autopkgtest, requires qemu
* Clean up podman-docker shell completion when podman-doker
is absent on upgrade, Closes: #1083242
-- Reinhard Tartler <siretart@tauware.de> Sun, 06 Oct 2024 08:09:12 -0400
podman (5.2.3+ds1-2) unstable; urgency=medium
[ Reinhard Tartler ]
* Enable CNI networking for now, closes: #1079327
* Reenable full salsa-ci pipeline
* simplify builtin-test
* builtin-tests: restrict to building the podman executable
* fix source/lintian-override
* Supress more "field-to-long" lintian warnings
[ Guillem Jover ]
* Do not hardcode gopsutil v3, closes: #1083117
-- Reinhard Tartler <siretart@tauware.de> Wed, 02 Oct 2024 06:00:51 -0400
podman (5.2.3+ds1-1) unstable; urgency=medium
* New upstream release 5.2.3
-- Reinhard Tartler <siretart@tauware.de> Thu, 26 Sep 2024 18:20:26 -0400
podman (5.2.2+ds1-4) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Mon, 16 Sep 2024 15:31:01 -0400
podman (5.2.2+ds1-3) experimental; urgency=medium
* Rename source package to 'podman', following upstream
* fix autopkgtest/builtin-tests: exclude cmd/podman/machine
-- Reinhard Tartler <siretart@tauware.de> Sat, 14 Sep 2024 10:21:52 -0400
libpod (5.2.2+ds1-2) unstable; urgency=medium
[ Reinhard Tartler ]
* Merge from experimental
* Ship etc/profile.d in the podman-docker package, Closes: #1080424
* Fixup for fe0ce17dd1f040be77182f8b5a5c884c49d30b5d
* Add appropriate Breaks/Replaces for podman-docker, Closes: #1080424
[ Faidon Liambotis ]
* Ship completions for the fish shell (Closes: #1080291)
* Bump Standards-Version to 4.7.0
-- Reinhard Tartler <siretart@tauware.de> Tue, 10 Sep 2024 07:42:57 -0400
libpod (5.2.2+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Sun, 01 Sep 2024 18:45:58 -0400
libpod (5.2.1+ds1-4) unstable; urgency=medium
* Add appropriate Breaks/Replaces for podman-docker, Closes: #1080424
-- Reinhard Tartler <siretart@tauware.de> Wed, 04 Sep 2024 06:20:50 -0400
libpod (5.2.1+ds1-3) unstable; urgency=medium
* Don't set HOME unnecessarily, fixes LP: #2077610
* Ship etc/profile.d in the podman-docker package, Closes: #1080424
-- Reinhard Tartler <siretart@tauware.de> Tue, 03 Sep 2024 18:23:12 -0400
libpod (5.2.1+ds1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Sat, 17 Aug 2024 07:39:04 -0400
libpod (5.2.1+ds1-1) experimental; urgency=medium
* New upstream release
* Tighten dependencies on containers/{image,common,buildah}
* supress lintian error: field-too-long Built-Using
-- Reinhard Tartler <siretart@tauware.de> Thu, 15 Aug 2024 20:27:27 -0400
libpod (5.2.0+ds1-6) experimental; urgency=medium
* Merge in changes from branch 'debian/sid':
- Pick up changes to move alias files to /usr, Closes: #1078552
-- Reinhard Tartler <siretart@tauware.de> Thu, 15 Aug 2024 07:48:39 -0400
libpod (5.2.0+ds1-5) experimental; urgency=medium
* Add sanity checks to podman-hello-world
* autopkgtest that run podman require isolation-machine
* Tighten build-depends on buildah
-- Reinhard Tartler <siretart@tauware.de> Sun, 11 Aug 2024 08:41:27 -0400
libpod (5.2.0+ds1-4) experimental; urgency=medium
* Recommend 'netavark'
-- Reinhard Tartler <siretart@tauware.de> Sat, 10 Aug 2024 14:48:13 -0400
libpod (5.2.0+ds1-3) experimental; urgency=medium
* Tighten build deps on golang-github-opencontainers-runc-dev
* Install recommends for tests
* Implement autopkgtest 'podman-info' into its own shell script
* Add recommends to ca-certificates
* Add test that runs hello-world
* Fix autopkgtest failure in qemu
-- Reinhard Tartler <siretart@tauware.de> Fri, 09 Aug 2024 14:49:49 -0400
libpod (5.2.0+ds1-2) experimental; urgency=medium
* Tighten dependencies on containers/{storage,image,common}
-- Reinhard Tartler <siretart@tauware.de> Thu, 08 Aug 2024 08:11:05 -0400
libpod (5.2.0+ds1-1) experimental; urgency=medium
* New upstream release: 5.2.0
* Drop unneded patches
* Tighten deps on go-criu and checkpointctl
* Revert upstream change to compile against docker version 26.1
* Promote 'Suggests' on 'containers-storage' to Recommends,
Closes: #1065732, 1062176
-- Reinhard Tartler <siretart@tauware.de> Thu, 08 Aug 2024 06:47:16 -0400
libpod (5.0.3+ds1-5) unstable; urgency=medium
* Team Upload.
* Add netavark to Depends (Fixes autopkgtest)
-- Nilesh Patra <nilesh@iki.fi> Sun, 28 Jul 2024 23:09:36 +0530
libpod (5.0.3+ds1-4) unstable; urgency=medium
* Team upload
* Upload changes from experimental to unstable
-- Mathias Gibbens <gibmat@debian.org> Sat, 27 Jul 2024 01:35:14 +0000
libpod (5.0.3+ds1-3) experimental; urgency=medium
* Add conflicts relationship to docker-cli, Closes: #1076373
-- Reinhard Tartler <siretart@tauware.de> Tue, 23 Jul 2024 09:42:05 +0200
libpod (5.0.3+ds1-2) experimental; urgency=medium
* Tighten dependency on rootlesskit v2
-- Reinhard Tartler <siretart@tauware.de> Sat, 13 Jul 2024 00:33:33 -0400
libpod (5.0.3+ds1-1) experimental; urgency=medium
* New upstream release: 5.0.3,
Addresses: CVE-2024-3727
* Enable HEREDOC support, image signing
* compile against docker 26.1, containerd 1.7, rootlesskit v2
-- Reinhard Tartler <siretart@tauware.de> Fri, 12 Jul 2024 18:04:56 -0400
libpod (4.9.5+ds1-1) unstable; urgency=medium
* New upstream version
- compiled against newer containers/image to address CVE-2024-3727,
and also enables image signing and verification with sigstore
* Move systemd files from /lib to /usr/lib, closes: #1073740
* Add tipp to reset configuration to help with networking issues,
Closes: #1066139
-- Reinhard Tartler <siretart@tauware.de> Thu, 04 Jul 2024 17:11:36 -0400
libpod (5.0.2+ds1-3) experimental; urgency=medium
* Build against buildah 1.35
-- Reinhard Tartler <siretart@tauware.de> Sun, 05 May 2024 07:43:03 -0400
libpod (5.0.2+ds1-2) experimental; urgency=medium
* Fix build on !amd64,!arm64
-- Reinhard Tartler <siretart@tauware.de> Sat, 04 May 2024 08:33:41 -0400
libpod (5.0.2+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Sat, 27 Apr 2024 18:45:03 -0400
libpod (5.0.0+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Mon, 08 Apr 2024 21:24:24 +0000
libpod (4.9.5+ds1-1) unstable; urgency=medium
* New upstream version
- compiled against newer containers/image to address CVE-2024-3727,
and also enables image signing and verification with sigstore
* Move systemd files from /lib to /usr/lib, closes: #1073740
* Add tipp to reset configuration to help with networking issues,
Closes: #1066139
-- Reinhard Tartler <siretart@tauware.de> Thu, 04 Jul 2024 17:11:36 -0400
libpod (4.9.4+ds1-1) unstable; urgency=medium
* New upstream version
- picks up newer buildah to address CVE-2024-1753
-- Reinhard Tartler <siretart@tauware.de> Thu, 28 Mar 2024 11:03:55 +0000
libpod (4.9.3+ds1-1) unstable; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Tue, 13 Feb 2024 20:52:08 -0500
libpod (4.9.2+ds1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Tue, 06 Feb 2024 19:05:37 -0500
libpod (4.9.2+ds1-1) experimental; urgency=medium
* New Upstream release, Closes: #1062529
- Fixes: CVE-2024-23651, CVE-2024-23652, and CVE-2024-23653.
* Tighten dependencies on containers/{image,common,buildah}
-- Reinhard Tartler <siretart@tauware.de> Tue, 06 Feb 2024 11:17:43 -0500
libpod (4.9.0+ds1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Thu, 25 Jan 2024 06:47:15 -0500
libpod (4.9.0+ds1-1) experimental; urgency=medium
* New upstream release, closes: #1061383
* Build against buildah 1.33.3
-- Reinhard Tartler <siretart@tauware.de> Tue, 23 Jan 2024 18:14:02 -0500
libpod (4.8.3+ds1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Sun, 21 Jan 2024 17:27:25 -0500
libpod (4.8.3+ds1-1) experimental; urgency=medium
* New upstream release, Closes: #1057618
-- Reinhard Tartler <siretart@tauware.de> Sun, 21 Jan 2024 08:42:13 -0500
libpod (4.7.2+ds1-2) unstable; urgency=medium
* upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Fri, 03 Nov 2023 06:16:15 -0400
libpod (4.7.2+ds1-1) experimental; urgency=medium
[ Faidon Liambotis ]
* Remove a superfluous stanza from d/copyright.
* Drop fuse-overlayfs Suggests, as the kernel overlayfs driver can be used
with rootless containers since Linux v5.13 and is now recommended.
* Remove versioned Depends/Recommends/Breaks for versions that predate
oldstable (bullseye).
* Ship the new podmansh login shell. See podmansh(1) for a detailed
description of this new tool. Note that this is still considered a
technology preview by upstream.
[ Reinhard Tartler ]
* New upstream release
* Drop all vendored libraries, but a single file that is copied in.
- Fixed https://github.com/moby/moby/security/advisories/GHSA-jq35-85cj-fj4p
-- Reinhard Tartler <siretart@tauware.de> Thu, 02 Nov 2023 17:57:39 -0400
libpod (4.7.1+ds4-5) unstable; urgency=medium
* avoid file conflict with podman-compose
-- Reinhard Tartler <siretart@tauware.de> Fri, 27 Oct 2023 14:58:33 -0400
libpod (4.7.1+ds4-4) unstable; urgency=medium
* Upload to unstable
* Build against golang-github-checkpoint-restore-go-criu-dev v6
* drop patches merged upstream
* drop disable-sigstore.patch
* avoid file conflicts with docker-compose (Closes: #1054460)
-- Reinhard Tartler <siretart@tauware.de> Fri, 27 Oct 2023 14:01:53 -0400
libpod (4.7.1+ds4-3) experimental; urgency=medium
* align test invocation with upstream makefile to fix FTBFS
-- Reinhard Tartler <siretart@tauware.de> Mon, 23 Oct 2023 09:39:59 -0400
libpod (4.7.1+ds4-2) experimental; urgency=medium
* more reliable way to build podman-machine
-- Reinhard Tartler <siretart@tauware.de> Mon, 23 Oct 2023 06:58:01 -0400
libpod (4.7.1+ds4-1) experimental; urgency=medium
* New upstream release (Closes: #1053131)
* Refresh patches
* Tighten dependencies
-- Reinhard Tartler <siretart@tauware.de> Mon, 16 Oct 2023 08:37:48 -0400
libpod (4.6.2+ds1-4) unstable; urgency=medium
[ Anthony Fok ]
* [backport] libpod: move oom_score_adj clamp to init
-- Reinhard Tartler <siretart@tauware.de> Sun, 22 Oct 2023 17:24:16 -0400
libpod (4.6.2+ds1-3) unstable; urgency=medium
[ Konstantin Demin ]
* [backport] fix mount of cgroup without a netns
[ Reinhard Tartler ]
* [backport] linux, rootless: clamp oom_score_adj if it is too low
* podman: Add passt as recommends (Closes: #1052449)
-- Reinhard Tartler <siretart@tauware.de> Sun, 15 Oct 2023 15:09:22 -0400
libpod (4.6.2+ds1-2) unstable; urgency=medium
* Upload to unstable
* Add migration notes for vfs to overlay migration. Wording provided by:
Gregor Riepl <onitake@gmail.com>, Closes: #1050993
-- Reinhard Tartler <siretart@tauware.de> Wed, 20 Sep 2023 13:00:37 -0400
libpod (4.6.2+ds1-1) experimental; urgency=medium
* New upstream release.
* Tighten dependencies
* Refresh patches
* drop remove-uber-jaeger-client-go.patch, merged upstream
* add revert-newer-docker2.patch, additional work to avoid dependency
on newer docker
-- Reinhard Tartler <siretart@tauware.de> Sun, 17 Sep 2023 10:20:03 -0400
libpod (4.5.1+ds1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Sat, 09 Sep 2023 18:52:10 -0400
libpod (4.5.1+ds1-1) experimental; urgency=medium
[ Faidon Liambotis ]
* New upstream release.
* Backport an upstream patch from v4.6.0 to remove the uber/jaeger-client-go
dependency, and unvendor the code.
* Add debian/copyright stanzas for the three remaining vendored libraries.
[ Reinhard Tartler ]
* Upload to experimental
-- Reinhard Tartler <siretart@tauware.de> Thu, 07 Sep 2023 18:14:11 -0400
libpod (4.5.0+ds2-1) experimental; urgency=medium
[ Reinhard Tartler ]
* New upstream release
- Prefers overlay storage driver over vfs, Closes: #1050993, 1038414
- which makes non-standard vfs options unnecessary, Closes: #1002997
* Install quadlet, Closes: #1034539
* Move fuse-overlayfs to Suggests, Closes: #1041050
* Unvendor some additional sources
* Build against vbauerster/mpb8, and drop patch vbauerster_mbp_7
* Disable ostree support
[ Faidon Liambotis ]
* Add myself to Uploaders.
* Update long description using upstream's latest verbiage.
* Bump Standards-Version to 4.6.2, no changes needed.
* Drop upstream patches:
- test--skip-issue-17366, as the underlying issue was fixed upstream.
- generate-crash, as it was unused, and a backport of a v4.0 commit.
* Call "make clean" during clean, to clean up generated documentation files
and restore the source tree to its pristine form, Closes: #1045188
* Install usr/share/user-tmpfiles.d/podman-docker.conf, Closes: #1034026
* Pass --no-source to dh_auto_build, and re-enable dh_missing
--fail-missing.
* Ship podman-remote's documentation, i.e. the podman-remote.1 manpage and
remote_client.md, in the podman-remote package.
* Ship podman-remote's bash completion.
* Move rootlessport and quadlet from /usr/lib/ to /usr/libexec/.
* Ship an empty /etc/containers/systemd directory, where container files can
be written for the systemd generator (quadlet) to pick them up.
* debian/copyright:
- Update to recent sources and remove obsolete entries and comments.
- Remove stanzas for now un-vendored code.
- Remove unused license stanzas: ISC and BSD-3-clause.
- Update debian/ copyright to latest authors
- Use "podman" in Upstream-Name and Source, to reflect an upstream change.
* debian/upstream/metadata:
- Replace invalid "Homepage" field by Repository/Repository-Browse.
- Add the Changelog field, pointing to the upstream release notes.
* Update debian/watch to point to /tags rather than /releases, as GitHub's
releases page now requires JavaScript.
* Rename the builtin_tests autopkgtest name to builtin-tests, as underscores
are invalid in test names (addresses illegal-runtime-test-name warning).
* Add a debian/gbp.conf config file, allowing to use standardized
git-buildpackage tools to update to newer versions.
* Resort and wrap debian/control using wrap-and-sort -ast.
* Remove unused source-includes-file-in-files-excluded lintian override.
* Add an absolute-symbolic-link-target-in-source lintian override, for the
"containerignore-symlink" e2e test, as that is harmless and clearly
intentional.
-- Reinhard Tartler <siretart@tauware.de> Tue, 05 Sep 2023 21:33:43 -0400
libpod (4.4.0+ds1-2) experimental; urgency=medium
[ Norbert Lange ]
* Build and install podman-remote, Closes: #1020540
-- Reinhard Tartler <siretart@tauware.de> Wed, 12 Apr 2023 07:07:55 -0400
libpod (4.4.0+ds1-1) experimental; urgency=medium
* New upstream version
* Disable failing test, cf. https://github.com/containers/podman/issues/17366
* disable sigstore functionalty, will be reenabled when the packages enters
Debian
* bump dependency on containers/{image,common,buildah}
-- Reinhard Tartler <siretart@tauware.de> Sat, 04 Feb 2023 14:31:59 -0500
libpod (4.3.1+ds1-8) unstable; urgency=medium
* [upstream] unbreak using docker as client
* debian/control: tighten dependencies against buildah (Closes: #1034871)
* [upstream] system reset: show graphRoot/runRoot before removal
-- Reinhard Tartler <siretart@tauware.de> Sun, 30 Apr 2023 08:19:54 -0400
libpod (4.3.1+ds1-7) unstable; urgency=medium
* [upstream] volume,container: chroot to source before exporting content
(Closes: #1032099), Fixes: CVE-2023-0778
-- Reinhard Tartler <siretart@tauware.de> Mon, 10 Apr 2023 18:39:24 -0400
libpod (4.3.1+ds1-6) unstable; urgency=medium
* Team upload
[ Reinhard Tartler ]
* Re-enable builtin tests, but mark as flaky
[ Shengjing Zhu ]
* Replace golang-github-uber-go-atomic-dev with golang-go.uber-atomic-dev
* Drop unused golang-github-{influxdata,hpcloud}-tail-dev in Build-Depends
* Replace golang-ginkgo-dev with golang-github-onsi-ginkgo-dev
-- Shengjing Zhu <zhsj@debian.org> Sun, 26 Feb 2023 21:41:30 +0800
libpod (4.3.1+ds1-5) unstable; urgency=medium
* Drop golang-github-containers-libpod-dev
* Add a simple smoketest
-- Reinhard Tartler <siretart@tauware.de> Sun, 27 Nov 2022 12:25:39 -0500
libpod (4.3.1+ds1-4) unstable; urgency=medium
* upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Thu, 24 Nov 2022 15:35:49 -0500
libpod (4.3.1+ds1-3) experimental; urgency=medium
* debian/rules: make the previous change to build machine/qemu only
on supported architecture actually work
-- Reinhard Tartler <siretart@tauware.de> Tue, 22 Nov 2022 17:49:12 -0500
libpod (4.3.1+ds1-2) experimental; urgency=medium
* Build machine/qemu only on amd64, arm64, fixes FTBFS
-- Reinhard Tartler <siretart@tauware.de> Mon, 14 Nov 2022 07:33:14 -0500
libpod (4.3.1+ds1-1) experimental; urgency=medium
* New upstream release
- Add container GID to additional groups,
fixes CVE-2022-2989, closes: #1019591
* Bugfix: Subordinate UID/GID ranges not fetched from libsubid,
Thanks to Sam Morris <sam@robots.org.uk> for the patch, closes: #1019929
-- Reinhard Tartler <siretart@tauware.de> Sun, 13 Nov 2022 12:27:53 -0500
libpod (4.2.0+ds1-3) experimental; urgency=medium
* Force using golang-go to avoid compilation failures with gcc-go
* Confirmed updated components allow podman to work, thanks to
Bastian Blank (Closes: #1012053), and is compiled against a
containers/common that is more mindful regarding foreign-arch
images (Closes: #1009376)
* Confirmed fix: "starting rootless container fails with: can't get final
child's PID from pipe: EOF", code change likely already in 4.1
thanks to Gabriel Filion (Closes: #1007022).
* Make podman recommend 'dbus-user-session', Closes: #1009747
-- Reinhard Tartler <siretart@tauware.de> Fri, 19 Aug 2022 09:43:54 +0200
libpod (4.2.0+ds1-2) experimental; urgency=medium
* tighten dependency on golang-github-opencontainers-runc-dev
-- Reinhard Tartler <siretart@tauware.de> Wed, 17 Aug 2022 18:51:09 +0200
libpod (4.2.0+ds1-1) experimental; urgency=medium
* New upstream release
* drop patches merged upstream
* add distro patch to use system 'goimports' utility
* tighten dependencies
* hooks/docs no longer provides section 5 manpages
-- Reinhard Tartler <siretart@tauware.de> Wed, 17 Aug 2022 15:37:36 +0200
libpod (4.1.1+ds1-3) experimental; urgency=medium
* reorganize dependencies for networking stack
-- Reinhard Tartler <siretart@tauware.de> Fri, 05 Aug 2022 20:47:56 +0200
libpod (4.1.1+ds1-2) experimental; urgency=medium
* organize GOLANG_EXCLUDES and GOLANG_TEST_EXCLUDES
* add patches fix-test-TestEnvVarValue-NN.patch, fixes
Test failures for !amd64, !arm64 Closes: #1014309
-- Reinhard Tartler <siretart@tauware.de> Mon, 04 Jul 2022 12:07:31 -0400
libpod (4.1.1+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Sun, 03 Jul 2022 17:33:34 -0400
libpod (4.1.0+ds2-2) experimental; urgency=medium
* Avoid building podman/pkg/machine/e2e on all architectures
-- Reinhard Tartler <siretart@tauware.de> Thu, 19 May 2022 16:31:29 -0400
libpod (4.1.0+ds2-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Thu, 19 May 2022 06:42:45 -0400
libpod (4.0.3+ds1-1) experimental; urgency=medium
[ Antonio Terceiro ]
* Stop installing systemd socket units under /usr/lib, Closes: #1009374
[ Reinhard Tartler ]
* New upstream release
* Skip installation of podman-remote(1), Closes: #1000521
-- Reinhard Tartler <siretart@tauware.de> Sat, 16 Apr 2022 06:41:11 -0400
libpod (4.0.1+ds1-3) experimental; urgency=medium
* Fix installation of systemd units
-- Reinhard Tartler <siretart@tauware.de> Sun, 06 Mar 2022 17:16:32 -0500
libpod (4.0.1+ds1-2) experimental; urgency=medium
* Install rootlessport, Closes: #1006426
-- Reinhard Tartler <siretart@tauware.de> Fri, 25 Feb 2022 12:47:27 -0500
libpod (4.0.1+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Wed, 23 Feb 2022 21:43:55 -0500
libpod (4.0.0~rc5+ds1-1) experimental; urgency=medium
* New upstream release, closes: #1003486
* Bug fix: "podman-restart missing from podman package", thanks to Jelle
van der Waa (Closes: #1001780).
-- Reinhard Tartler <siretart@tauware.de> Mon, 21 Feb 2022 20:44:22 -0500
libpod (3.4.7+ds1-3) unstable; urgency=medium
* backport upstream patch to avoid runtime crash,
Closes: #1010000 for real this time.
-- Reinhard Tartler <siretart@tauware.de> Sun, 24 Apr 2022 08:07:13 -0400
libpod (3.4.7+ds1-2) unstable; urgency=medium
* Rebuild against opencontainers/runtime-tools >> 0.9.0+git20220423,
Closes: #1010000
-- Reinhard Tartler <siretart@tauware.de> Sat, 23 Apr 2022 10:19:28 -0400
libpod (3.4.7+ds1-1) unstable; urgency=medium
* New upstream release.
- Fixes: CVE-2022-1227
-- Reinhard Tartler <siretart@tauware.de> Thu, 21 Apr 2022 16:09:59 -0400
libpod (3.4.6+ds1-1) unstable; urgency=medium
* New upstream release
- Fixes: CVE-2022-27191, CVE-2022-27649
* Fix installation of systemd units
[ Antonio Terceiro ]
* Stop installing systemd socket units under /usr/lib (Closes: #1009374)
-- Reinhard Tartler <siretart@tauware.de> Thu, 14 Apr 2022 07:11:33 -0400
libpod (3.4.4+ds1-1) unstable; urgency=medium
* New upstream release
Confirming that CVE-2021-4024 is fixed in 3.4.3, Closes: #1000844
-- Reinhard Tartler <siretart@tauware.de> Sat, 25 Dec 2021 19:48:14 -0500
libpod (3.4.3+ds1-1) unstable; urgency=medium
* New upstream release, Closes: #1001321
- podman machine spawns gvproxy with port binded to all IPs,
Closes: #1000844
-- Reinhard Tartler <siretart@tauware.de> Fri, 24 Dec 2021 14:40:01 -0500
libpod (3.4.2+ds1-1) unstable; urgency=medium
* New upstream release
* Compile against system github.com/dtylman/scp
* Revert upstream commit that requires newer godbus than we currently
have in unstable
-- Reinhard Tartler <siretart@tauware.de> Wed, 17 Nov 2021 14:30:31 -0500
libpod (3.4.1+ds1-2) unstable; urgency=medium
* Upload to unstable
* podman: Install tmpfiles.d/podman.conf, Closes: #995586
-- Reinhard Tartler <siretart@tauware.de> Tue, 26 Oct 2021 18:20:56 -0400
libpod (3.4.1+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Mon, 25 Oct 2021 13:58:58 -0400
libpod (3.4.0+ds1-1) experimental; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Fri, 08 Oct 2021 16:19:40 -0400
libpod (3.3.1+ds2-1) unstable; urgency=medium
* New upstream release
- drop coreos/{go-iptables,go-systemd}
* Drop unneeded dependency on golang-github-openshift-api-dev
* Bump Standards-Version, no changes needed
-- Reinhard Tartler <siretart@tauware.de> Tue, 07 Sep 2021 11:53:40 +0200
libpod (3.3.0+ds2-2) unstable; urgency=medium
* Apply missing patches that were forgotten in the last merge
from experimental:
- Prefer crun over runc
- Add depends in iptables
* Upstream improved documentation on requirements for rootless,
Closes: #983395
-- Reinhard Tartler <siretart@tauware.de> Sat, 04 Sep 2021 18:57:31 +0200
libpod (3.3.0+ds2-1) unstable; urgency=medium
* New upstream release, Closes: #992138, #992142
-- Reinhard Tartler <siretart@tauware.de> Mon, 30 Aug 2021 12:37:34 +0200
libpod (3.2.3+ds1-1) experimental; urgency=medium
* New upstream releases, Closes: #991197
* Bump dependency on golang-github-containers-common,buildah
-- Reinhard Tartler <siretart@tauware.de> Tue, 20 Jul 2021 18:22:50 -0400
libpod (3.2.2+ds1-1) experimental; urgency=medium
* New upstream releases, Closes: #990333
* Bump dependency on golang-github-containers-common
-- Reinhard Tartler <siretart@tauware.de> Mon, 28 Jun 2021 08:15:51 -0400
libpod (3.2.1+ds1-2) experimental; urgency=medium
* Provide 'podman-docker' package, Closes: #984770
* Tighten build dependency on golang-golang-x-net-dev
-- Reinhard Tartler <siretart@tauware.de> Tue, 15 Jun 2021 13:41:46 -0400
libpod (3.2.1+ds1-1) experimental; urgency=medium
* New upstream release
* Tighten build-depends on golang-github-containers-common-dev
and golang-github-containers-buildah-dev
-- Reinhard Tartler <siretart@tauware.de> Mon, 14 Jun 2021 14:08:01 -0400
libpod (3.2.0+ds5-2) experimental; urgency=medium
* Add patch from upstream to fix FTBFS on !(arm64, amd64)
-- Reinhard Tartler <siretart@tauware.de> Sat, 12 Jun 2021 07:07:45 -0400
libpod (3.2.0+ds5-1) experimental; urgency=medium
* New upstream release
* Install zsh completions (Closes: #989411)
* Disable LTO, cf. https://wiki.debian.org/ToolChain/LTO
-- Reinhard Tartler <siretart@tauware.de> Tue, 08 Jun 2021 17:33:43 -0400
libpod (3.1.2+ds1-2) experimental; urgency=medium
* add missing vendored files included in tarball
* (explicitly) build-depend on golang-github-moby-term-dev
-- Reinhard Tartler <siretart@tauware.de> Mon, 31 May 2021 09:55:52 -0400
libpod (3.1.2+ds1-1) experimental; urgency=medium
* New upstream release
* Drop dependency on golang-github-seccomp-containers-golang-dev,
Closes: #988445
-- Reinhard Tartler <siretart@tauware.de> Fri, 28 May 2021 17:57:28 -0400
libpod (3.1.0+ds1-1) experimental; urgency=medium
* New upstream release
* Reorganized git source layout. Drop a number of vendored libraries
(in favor of versions from the Debian archive)
- github.com/go-logr/logr
- github.com/moby/term
- github.com/nxadm/tail
- github.com/willf/bitset
- go.etcd.io/bbolt
- google.golang.org/protobuf
-- Reinhard Tartler <siretart@tauware.de> Sat, 03 Apr 2021 16:28:54 -0400
libpod (3.0.1+dfsg1-3) unstable; urgency=medium
* Add networking-lookup-child-IP-in-networks.patch, fixes rootless
connection issue "Connection reset by peer", Closes: #989803
-- Reinhard Tartler <siretart@tauware.de> Sun, 13 Jun 2021 18:28:49 -0400
libpod (3.0.1+dfsg1-2) unstable; urgency=medium
* Prefer crun over runc, Closes: #985379
* Add depends in iptables, Closes: #987207
-- Reinhard Tartler <siretart@tauware.de> Wed, 21 Apr 2021 17:36:07 -0400
libpod (3.0.1+dfsg1-1) unstable; urgency=medium
* New upstream release
* debian/control: tighten dependencies
* drop inspect-volume-data.patch, merged upstream
* Use packaged version of ocicrypt
-- Reinhard Tartler <siretart@tauware.de> Wed, 24 Feb 2021 06:46:17 -0500
libpod (3.0.0+dfsg1-2) unstable; urgency=medium
* Adjust dependencies on containers/{storage,image,common,buildah}
as discussed with upstream
-- Reinhard Tartler <siretart@tauware.de> Fri, 12 Feb 2021 08:42:39 -0500
libpod (3.0.0+dfsg1-1) unstable; urgency=medium
* New upstream release
-- Reinhard Tartler <siretart@tauware.de> Fri, 12 Feb 2021 06:12:02 -0500
libpod (3.0.0~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release
* Cleanup varlink service, closes: #981708
* Tighten dependency on buildah to pickup fix for caching bug,
closes: #982467
-- Reinhard Tartler <siretart@tauware.de> Wed, 10 Feb 2021 06:54:28 -0500
libpod (3.0.0~rc2+dfsg1-2) unstable; urgency=medium
* Upload to unstable
-- Reinhard Tartler <siretart@tauware.de> Tue, 02 Feb 2021 17:21:00 -0500
libpod (3.0.0~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release
* Install auto-update systemd units
* debian/copyright: more updates
* Install auto-update systemd units
* systemd: Don't enable podman-auto-update.service in default.target
(Closes: #981097)
* Pass buildtags also go test invocation to unbreak autopkgtests when
run as root
-- Reinhard Tartler <siretart@tauware.de> Sat, 30 Jan 2021 22:17:33 -0500
libpod (3.0.0~rc1+dfsg1-1) experimental; urgency=medium
* New upstream version
* Drop varlink references, dropped upstream
* Remove confusing line (Closes: #980480)
-- Reinhard Tartler <siretart@tauware.de> Sun, 24 Jan 2021 11:16:44 -0500
libpod (2.2.1+dfsg1-1) experimental; urgency=medium
* New upstream version
* drop cobra-spf13-api.patch, no longer needed
* Rely on upstream's build scripts to install manpages (Closes: #977502)
* Remove conflicting manpage container-mounts(5), Closes: #977502
* drop old-docker-api.patch, no longer needed
-- Reinhard Tartler <siretart@tauware.de> Fri, 18 Dec 2020 07:16:27 -0500
libpod (2.2.0+dfsg1-1) experimental; urgency=medium
* debian/changelog: Bump to libpod 2.2.0
* Refresh distro patches
* debian/control: Tighten build-dependency on buildah
* add cobra-spf13-api.patch
* debian/copyright: manual updates
* podman: Add depends on golang-github-containernetworking-plugin-dnsname
-- Reinhard Tartler <siretart@tauware.de> Tue, 08 Dec 2020 15:45:22 -0500
libpod (2.1.1+dfsg1-7) unstable; urgency=medium
* Pass buildtags also go test invocation to unbreak autopkgtests
on machines that run as real root.
-- Reinhard Tartler <siretart@tauware.de> Mon, 01 Feb 2021 06:43:56 -0500
libpod (2.1.1+dfsg1-6) unstable; urgency=medium
* debian/rules: Remove confusing line (Closes: #980480)
* systemd: Don't enable podman-auto-update.service in default.target
(Closes: #981097)
-- Reinhard Tartler <siretart@tauware.de> Tue, 26 Jan 2021 21:51:00 -0500
libpod (2.1.1+dfsg1-5) unstable; urgency=medium
* Install auto-update systemd units
-- Reinhard Tartler <siretart@tauware.de> Mon, 25 Jan 2021 07:49:44 -0500
libpod (2.1.1+dfsg1-4) unstable; urgency=medium
* Ignore containers.conf sysctl when namespaces set to host
(Closes: #979313)
-- Reinhard Tartler <siretart@tauware.de> Wed, 06 Jan 2021 20:48:36 -0500
libpod (2.1.1+dfsg1-3) unstable; urgency=medium
[ Dmitry Smirnov ]
* Tightened versioned dependency on "containernetworking-plugins".
[ Reinhard Tartler ]
* debian/copyright: various cleanups
* Fix handling of Ambient/Inheritable caps for non root user, Closes: #977717
* Rely on upstream's build scripts to install manpages
* Remove conflicting manpage container-mounts(5), Closes: #977502
-- Reinhard Tartler <siretart@tauware.de> Tue, 22 Dec 2020 13:00:57 -0500
libpod (2.1.1+dfsg1-2) unstable; urgency=medium
[ Reinhard Tartler ]
* Install runc by default, Closes: #971253
* Builds against structured-merge-diff/v4, Closes: #976410
[ Antonio Terceiro ]
* Recommend catatonit before the other inits (Closes: #971815)
-- Reinhard Tartler <siretart@tauware.de> Mon, 07 Dec 2020 06:56:09 -0500
libpod (2.1.1+dfsg1-1) unstable; urgency=medium
[ Reinhard Tartler ]
* New upstream release: 2.1.1
* golang-github-containers-libpod-dev: expose golang sources
* debian/copyright: update using cme update dpkg-copyright
[ Arnaud Rebillout ]
* Unvendor sigs.k8s.io/yaml
-- Reinhard Tartler <siretart@tauware.de> Fri, 27 Nov 2020 12:45:58 -0500
libpod (2.0.6+dfsg1-2) unstable; urgency=medium
* Restored io.podman/varlink interface, which is still in use by
nomad-driver-podman.
-- Dmitry Smirnov <onlyjob@debian.org> Thu, 22 Oct 2020 21:33:07 +1100
libpod (2.0.6+dfsg1-1) unstable; urgency=medium
* New upstream release
* debian/copyright: cleanups
* drop malformed lintian override
* Bump standard version, no changes needed
-- Reinhard Tartler <siretart@tauware.de> Mon, 14 Sep 2020 15:35:01 -0400
libpod (2.0.4+dfsg2-5) unstable; urgency=medium
* Team upload.
* Upload to unstable
-- Shengjing Zhu <zhsj@debian.org> Sun, 23 Aug 2020 02:42:00 +0800
libpod (2.0.4+dfsg2-4) experimental; urgency=medium
* Team upload.
* Tighten buildah Build-Depends version
-- Shengjing Zhu <zhsj@debian.org> Thu, 20 Aug 2020 02:54:27 +0800
libpod (2.0.4+dfsg2-3) experimental; urgency=medium
* Team upload.
[ Reinhard Tartler ]
* Add more notes on how to get started with Debian kernels
[ Shengjing Zhu ]
* Add patch to fix build with new runc
-- Shengjing Zhu <zhsj@debian.org> Thu, 20 Aug 2020 01:00:02 +0800
libpod (2.0.4+dfsg2-2) unstable; urgency=medium
[ Martin Pitt ]
* Bump conmon dependency
[ Dmitry Smirnov ]
* Harmonize repacksuffix to fix CI.
* Tighten recommendation on fuse-overlayfs (>= 1.0.0~).
[ Reinhard Tartler ]
* Bug fix: "Breaks docker", thanks to Jan Hudec (Closes: #968207).
- No longer create symlink /run/docker.sock to avoid interfering
with the docker daemon. Users that wish to replace the docker
daemon with podman are advised to install the symlink themselves
and arrange appropriate permissions for podman.sock.
-- Reinhard Tartler <siretart@tauware.de> Tue, 11 Aug 2020 07:41:44 -0400
libpod (2.0.4+dfsg2-1) unstable; urgency=medium
* Vendor in protobuf 3 to workaround #961814
* Remove "insanity workaround" related to protobuf
* Hand in forgotten changelog entry in 2.0.4+dfsg1-1
-- Reinhard Tartler <siretart@tauware.de> Mon, 03 Aug 2020 07:20:45 -0400
libpod (2.0.4+dfsg1-1) unstable; urgency=medium
* New upstream release
* No longer install /etc/containers/libpod.conf (Closes: #961016)
This file is deprecated in version 2.0 and is superseeded by
/etc/containers/containers.conf, which is provided by the
golang-github-containers-common package. The old file hardcodes
a default OCI runtime that breaks in default installations.
* Fixed REST API regression (Closes: #966501)
-- Reinhard Tartler <siretart@tauware.de> Thu, 30 Jul 2020 07:12:41 -0400
libpod (2.0.3+dfsg1-1) unstable; urgency=medium
* Team upload.
* New upstream release
* Install systemd helper files in favor of varlink (Closes: #966118)
-- Reinhard Tartler <siretart@tauware.de> Sun, 26 Jul 2020 10:53:39 -0400
libpod (2.0.2+dfsg1-3) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Reinhard Tartler <siretart@tauware.de> Mon, 20 Jul 2020 10:18:00 -0400
libpod (2.0.2+dfsg1-2) experimental; urgency=medium
* Team upload.
* debian/rules: Add XDG_RUNTIME_DIR settings on build
- Based on debian/rules from the ibus package, unbreaks
testsuite on many buildds
-- Reinhard Tartler <siretart@tauware.de> Fri, 17 Jul 2020 06:56:20 -0400
libpod (2.0.2+dfsg1-1) experimental; urgency=medium
* Team upload.
* New upstream version, Closes: #964378
-- Reinhard Tartler <siretart@tauware.de> Thu, 16 Jul 2020 18:06:15 -0400
libpod (1.6.4+dfsg1-4) unstable; urgency=medium
* Team upload.
* Rename golang-x-text-dev to golang-golang-x-text-dev
-- Shengjing Zhu <zhsj@debian.org> Sun, 12 Jul 2020 18:51:51 +0800
libpod (1.6.4+dfsg1-3) unstable; urgency=high
* Team upload.
* Do not copy up when volume is not empty
CVE-2020-1726, Closes: #961421
-- Reinhard Tartler <siretart@tauware.de> Thu, 28 May 2020 17:24:41 -0400
libpod (1.6.4+dfsg1-2) unstable; urgency=medium
* Un-vendored "golang-github-checkpoint-restore-go-criu-dev".
* Tightened dependency: "conmon (>= 2.0.2~)".
* rules:
+ Golang insanity workaround.
+ Removed obsolete "containers_image_ostree" build tag.
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 14 Jan 2020 10:56:58 +1100
libpod (1.6.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Install "seccomp.json".
* Install tutorials.
* Un-vendored "openshift/api" library.
* Build-Depends:
- golang-github-boltdb-bolt-dev
+ golang-github-coreos-bbolt-dev (>= 1.3.3~)
- golang-github-containerd-continuity-dev
= golang-github-containers-buildah-dev (>= 1.11.6~)
= golang-github-containers-image-dev (>= 5.0.0~)
+ golang-github-openshift-api-dev
-- Dmitry Smirnov <onlyjob@debian.org> Fri, 03 Jan 2020 08:36:51 +1100
libpod (1.6.2+dfsg-3) unstable; urgency=medium
* Install annotated CNI examples.
* Replaced default CNI "bridge" policy with "ptp".
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 31 Dec 2019 12:07:07 +1100
libpod (1.6.2+dfsg-2) unstable; urgency=medium
* Added note about "swapaccount" to README.Debian.
* libpod.conf: prefer "crun" over "runc".
* Tightened "fuse-overlayfs" dependency.
* Only install "registries.conf" example but not conf file.
* Use "tini-static" for "init_path" built-in default instead of
"catatonit".
* Added "buildah" to Recommends since it provides "containers/image" man
pages.
* Standards-Version: 4.4.1
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 29 Dec 2019 20:49:01 +1100
libpod (1.6.2+dfsg-1) unstable; urgency=medium
* Initial release (Closes: #930440).
-- Dmitry Smirnov <onlyjob@debian.org> Tue, 12 Nov 2019 13:29:33 +1100
|