forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
4986 lines (4904 loc) · 215 KB
/
changelog.txt
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
- Changelog for v2.0.0-rc7 (2020-06-17)
* Bump Buildah to v1.15.0
* Move logs functionality to separate file for APIv2
* generate systemd: `ExecStopPost` for all units
* Revert #6591 to fix issue with failed tests
* vendor github.com/containers/image/[email protected]
* Add support for the unless-stopped restart policy
* fix misc remote build issues
* "streaming output" logs test: fix flake
* Fix handling of old oci hooks
* [CI:DOCS] Fixes #6548
* Re-add resource limit warnings to Specgen
* Add <return> to lines returen in podman-remote logs
* Vendor containers/common v0.14.0
* Show Anon, GID, UID in v2 volumes
* Fix podman inspect on overlapping/missing objects
* Fix --init and --init-path
* Fix podman-remote images
* Revert "Change Varlink systemd unit to use `system service`"
* Bump github.com/containers/conmon
* handlers/compat: fix lint error
* auto-update: use image's arch
* APIv2 tests: Add some tests for podman pods
* Add deprecated message to varlink command
* Handle errors on attach properly
* fix podman cp can create an extra directory level
* Remove redundant break in for loop.
* Bump to v2.0.0-dev
* generate systemd: `--replace` on named containers/pods
* pod create --replace
* {create,run} --replace
* Bump github.com/uber/jaeger-client-go
* Bump github.com/onsi/ginkgo from 1.12.3 to 1.13.0
* Adds more docker py test
* The string field of Built was missing from server
* Add some additional fields to imageinspect
* Do not print error message when container does not exist
* Changed from t.StopAtEOF() to t.Stop() and added error check
* Fix -f logs to stop when a container exits
* Add the missing return
* Fix -f logs follow with stopped container
- Changelog for v2.0.0-rc6 (2020-06-15)
* Change Varlink systemd unit to use `system service`
* Turn on More linters
* Do not default WorkingDir to / on client side
* Reassemble filters on the server side
* Bump github.com/containers/common from 0.13.0 to 0.13.1
* [CI:DOCS] Fix carriage returns in API v2 header
* Fix missing code during in_podman build
* update document login see config.json as valid
* [CI:DOCS] Add quick start directions to APIv2 Dock
* Fix builds for RDO
* podman: create scope only if --cgroup-manager=systemd
* libpod: fix check for slirp4netns netns
* e2e: sanity check --infra-conmon-pidfile
* generate systemd: wrap pod/ctr lookup errors
* docs: create/run fix --pod-id-file description
* generate systemd: create pod template
* generate systemd: refactor
* add (*Pod).CreateCommand()
* generate systemd: rename source files
* generate systemd: rephrase lookup error
* pod create: add `--infra-conmon-pidfile`
* generate systemd: rename "cid" to "ctr-id"
* container-{create,run}: add `--pod-id-file`
* podman-pod{rm,start,stop}: support --pod-id-file
* systemd/generate: remove unused infra container field
* pod config: add a `CreateCommand` field
* Fixed bug where 'podman log <container>' would truncate some lines.
* Enable IPv6 port binding
* Bump to v2.0.0-dev
* container: do not set hostname when joining uts
* container: make resolv.conf and hosts accessible in userns
* WIP: Enable (and disable) remote testing
* fix api fails with 'strconv.ParseUint: parsing "tcp": invalid syntax'
* Fix play kube report printing when no containers are created
* Fix missing doc for field in PlayKubePod
* Update comment related to seccomp profiles in play kube
* Consistent Yaml convention througout play kube tests
* Fix podman generate tests that relied on play kube
* Add tests for Deployment Kind and minor fix for play kube output
* Fix existing tests
* Modify PlayKubeReport to preserve pod->container mapping
* supporting k8s Deployment objects
- Changelog for v2.0.0-rc5 (2020-06-10)
* Fix Id->ID where possible for lint
* Fixup issues found by golint
* podman-events: clarify streaming behaviour
* Cirrus: Include packages for containers/conmon CI
* Ensure signal validation happens first in pod kill
* Bump github.com/json-iterator/go from 1.1.9 to 1.1.10
* Bump github.com/containers/common from 0.12.0 to 0.13.0
* Improve swagger+CORS metadata docs
* Ensure Conmon is alive before waiting for exit file
* Bump github.com/stretchr/testify from 1.6.0 to 1.6.1
* e2e: disable checkpoint test on Ubuntu
* force bats version to v1.1.0
* Enable Ubuntu tests in CI
* Modify py test to start stop system service for each test
* Add parallel operation to `podman stop`
* Fix handling of systemd.
* Add parallel execution code for container operations
* Fix handling of ThrottleWriteIOPSDevice
* Bump github.com/seccomp/containers-golang from 0.4.1 to 0.5.0
* Strip defaults from namespace flags
* Ensure that containers in pods properly set hostname
* Adds docker py regression test.
* Turn on the podman-commands script to verify man pages
* Attempt to turn on special_testing_in_podman tests
* Bump to v2.0.0-dev
- Changelog for v2.0.0-rc4 (2020-06-04)
* /images/.../json: fix port parsing
* BATS and APIv2: more tests and tweaks
* Vendor in container/storage v1.20.2
* add socket information to podman info
* Namespace fields were set with bogus values
* When stopping containers locally, ensure cleanup runs
* Remove use of ABISupport buildtag
* fix remote test --ignore & turn on more tests
* Ensure that image/container inspect are specialized
* turn on remote stop_test
* V2 Add support for ssh authentication methods
* Add a few CVE entries to changelog.txt
* Add more Remote tests
* RHEL8 and Centos8 don't have oci-runtime yet
* test.apiv2: add test cases for committing an image from a container
* Turn on remote rm_test --cidfile
* Properly follow linked namespace container for stats
* Fix a segfault in `podman inspect -l` w/ no containers
* Remove reference to "upcoming" RHEL 7.7
* Bump Conmon in COPR spec
* Enable detached exec for remote
* check --user range for rootless containers
* images --no-trunc: fix ID formatting
* make env handling os dependent
* Bump github.com/containers/conmon
* Bump github.com/onsi/ginkgo from 1.12.2 to 1.12.3
* Update vendor containers/psgo
* Bump github.com/opencontainers/runc from 1.0.0-rc9 to 1.0.0-rc90
* Bump github.com/coreos/go-systemd/v22 from 22.0.0 to 22.1.0
* Combine the code of dealing with 'readonly' and 'ro'.
* Add bindings for exec and enable attached remote
* Add information on detach-keys
* system tests : more tests
* Add support for format {{.Label}}
* turn on remote testing for images. podman-remote build now works.
* Add invalid value to error message
* Fix leak of empty tarball
* Update man pages for --ip with CNI networks
* [CI:DOCS] update httpd location in tutorial
* default build without `varlink` tag
* Bump to v2.0.0-dev
* compat handlers: add X-Registry-Auth header support
* Don't build code on remoteclient
* v2 copy endpoints
* Bump github.com/rootless-containers/rootlesskit from 0.9.4 to 0.9.5
* system tests: enable skopeo REGISTRY_AUTH_FILE
- Changelog for v2.0.0-rc3 (2020-05-29)
* Bump github.com/stretchr/testify from 1.5.1 to 1.6.0
* V2 verify JSON output is consistent and doesn't drift
* Vendor in containers/common v0.12.0
* Ensure that signal names can be parsed on Windows
* fix `ps --last=N`
* test.apiv2: add testing for image and deal with API returning binary
* specgen: fix segfault
* Add streaming ability to endpoint
* Fix builds on 32 bit arches
* v2 libpod push: correct docs
* container stats: fix --no-stream race
* Add --format to pod inspect
* Add support for `readonly` option to --mount
* docs: fix typo
* V2 Fix interface nil checks
* [CI:DOCS] Tweak casing in rootless doc
* podman-registry: many unrelated fixes
* Fix Dockerfile
* Bump github.com/opencontainers/selinux from 1.5.1 to 1.5.2
* podman-registry helper script: handle errors
* Makefile: customizable $REMOTETAGS
* add section on rootless volumes
* [CI:DOCS] Prepare image to turn on podman-commands test
* Vendor in latest containers/buildah
* Turn on Fedora testing
* [CI:DOCS] Fix readthedocs link
* [CI:DOCS]add crun to gating image
* network compatibility endpoints for API
* Add MethodNotAllowedHandler() to add in debugging
* Follow up PR to fix issues found in #6341
* Bump to v2.0.0-dev
* [CI:DOCS]Add conmon to gating image
* Attempt to turn on build_without_cgo tests
* Attempt to turn on additional build tests
* Added new flags to 'podman generate systemd' to change the unit name prefix
* Enable rootless tests for podman remote
* V2 enable remote logs and testing
- Changelog for v2.0.0-rc2 (2020-05-22)
* Attempt to turn on integration tests
* Removes remote system reset functionality. skip e2e test for remote.
* Attempt to turn on special_testing_endpoing tests
* Attempt to turn on varlink tests
* Attempt to turn on rpmbuild tests
* Bump github.com/containers/common from 0.11.2 to 0.11.4
* Enables iidfile test as issue fixed now
* [CI:DOCS] Docs revamp.
* Fix podman-remote start tests
* podman version --format ... was not working
* Display human build date in podman info
* remote manifest test
* Turn on more remote tests
* v2 podman-remote build
* Fix podman-remote stop --all to handle not running containers
* Enable rmi test
* Bump github.com/opencontainers/go-digest from 1.0.0-rc1 to 1.0.0
* Remove github.com/libpod/libpod from cmd/pkg/podman
* Start testing with cross compilation
* Fixes podman pod create --pod-id-file #6292
* remote untag test
* Get proper exit code when running or starting a container.
* vendor: update seccomp/containers-golang to v0.4.1
* Bump github.com/containers/storage from 1.19.2 to 1.20.1
* Bump github.com/onsi/ginkgo from 1.12.0 to 1.12.2
* Handle filters correctly for podman prune
* Fix remote handling of podman images calls
* Bump k8s.io/api from 0.18.2 to 0.18.3
* Bump github.com/onsi/gomega from 1.10.0 to 1.10.1
* Enable system prune test remote client
* Fix build on OS X
* Update Derivative API tutorial to reflect the HTTP API
* Turn off 'noexec' option by default for named volumes
* enable remote integration tests for init
* Add a test for detached exec
* Update manpage for `podman exec` to include detach flag
* Enable cleanup processes for detached exec
* Add ability to clean up exec sessions with cleanup
* Add CLI frontend for detached exec
* Add backend code for detached exec
* Add exit commands to exec sessions
* enable pod_create remote integration tests
* Fix remote integration for healthchecks
* Fix create_test for remote integration
* govern remote attach and start
* Test fixes for remote integration
* V2 API Version Support
* Print container state when erroring that it is improper
* system tests: more podman-pod tests
* don't skip log tests unless remote
* [CI:DOCS] Image tree endpoint should return 404
* oci conmon: tell conmon to log container name
* add go-bindings for `hack/podman-registry`
* New tool: hack/podman-registry, manages local registry
* Testcase added for network commands
* format option added to network inspect command.
* filter option added to network ls command.
* Fix mountpont in SecretMountsWithUIDGID
* Update troubleshoot page
* v2 enable remote integration tests
* Get MAC, Windows and Linux podman-remote from latest version links.
* V2 Implement terminal handling in bindings attach
* Fix EOM for SendFile
* Bump to v2.0.0-dev
* Give `auto-update` ability to use per-container authfile specified by label.
* system tests: small fixes for rawhide+cgroups v1
* Add HairpinMode to our CNI configs
- Changelog for v2.0.0-rc1 (2020-05-18)
* v2endpoint remove image path correction
* Drop APIv2 resize endpoint
* Drop a debug line which could print very large messages
* v2 podman remote attach, start, and run
* Fix lint
* Remove duplicated exec handling code
* Fix lint
* Update API documentation for Inspect
* Parameters for ExecStart are body, not query
* Prune stale exec sessions on inspect
* Remove exec sessions on container restart
* Fix start order for APIv2 exec start endpoint
* Don't fail when saving exec status fails on removed ctr
* Add APIv2 handler for resizing exec sessions
* Ensure that Streams are set to defaults for HTTP attach
* Wire in endpoint for ExecStart
* Add an initial implementation of HTTP-forwarded exec
* Make convenience boxed true/false easier to use
* Use the libpod.conf cni_config_dir option for inspect and delete
* Cirrus: Refresh VM Images, Add Ubuntu 20 LTS
* Cirrus: Fix image-name hints
* Cirrus: Update Ubuntu 18 to 20
* fix bug --format {{json.}} of events
* V2 Update attach bindings to use Readers/Writers vs chan
* Ensure that cleanup runs before we set Removing state
* Fix two coverity issues (unchecked null return)
* Fix REMOTETAGS
* Cleanup OCI runtime before storage
* Default podman.spec to use crun
* Fix checkpoint --leave-running
* Bump github.com/containers/storage from 1.19.1 to 1.19.2
* Bump github.com/containernetworking/plugins from 0.8.5 to 0.8.6
* Update release notes and version on master
* WIP V2 attach bindings and test
* [CI:DOCS]remove libpod.conf from spec
* enable remote image tree
* Bump github.com/containers/conmon
* Bump gopkg.in/yaml.v2 from 2.2.8 to 2.3.0
* system tests: add volume tests
* cgroup: skip unified if we are using v1
* enable podman v2 networking for remote client
* Remove libpod.conf from repo
* add podman remote system df
* vendor crio/[email protected]
* test: enable networking test for rootless
* rootless: do not set pids limits with cgroupfs
* auto-update: support authfiles
* Add netgo build tag to static binary
* Adds tunnel routes for system reset.
* add port to podman remote command
* Bump github.com/containers/image/v5 from 5.4.3 to 5.4.4
* Bump github.com/containers/common from 0.11.1 to 0.11.2
* Some BATS cleanup: run and systemd tests
* v2podman image sign
* shm_lock_test: add nil check
* Add podman static build
* enable rootless mount tests
* spec: fix order for setting rlimits
* enable rootless integration testing
* [CI:DOCS] Add Security Policy
* V2 Impliment tunnelled podman version
* Ensure `podman inspect` output for NetworkMode is right
* Fix bug where pods would unintentionally share cgroupns
* bindings tests for container remove and inspect
* Add remaining annotations for `podman inspect`
* v2 podman unshare command
* Update the Podman readme
* v2 podman search rootless
* Fix `podman pod create --infra=false`
* default to tunnel without ABISupport tag
* abi: do not attempt to setup rootless if euid==0
* fix pod stats flake
* set binding tests to required
* Fix handling of overridden paths from database
* Fix typo in path
* Makefile: fix a dependency issue
* Fixed typo on podman network create man
* fix and enable systemd system tests
* Bump github.com/onsi/gomega from 1.9.0 to 1.10.0
* auto-update
* set --conmon-pidfile
* Fix parsing of --network for `podman pod create`
* Add podman-remote-static target
* podman: split env variables in env and overrides
* v2trust set and show
* container runlabel
* enable login/logut unspecified args
* [CI:DOCS] Add link to Tutorials to docs homepage
* Enables port test
* CI:DOCS: Document API docs + CORS maintenance
* Update manpages for image volumes and MAC address
* Updated heading from 5 to 6 in link.
* add {generate,play} kube
* Manifest remove, push
* Reenable systemd E2E tests
* Revert commit 016a91 already accepted.
* Updated heading from 5 to 6 in the link.
* Add small fixes for 'podman run' from diffing inspect
* manifest annotate
* Bump k8s.io/api from 0.17.4 to 0.18.2
* Bump github.com/containers/storage from 1.19.0 to 1.19.1
* Eliminate race condition on podman info
* v2 system subcommand
* v2 podman stats
* BATS help test: check usage string
* Rework port parsing to support --expose and -P
* [CI:DOC] Add linger to troubleshooting
* Fix errors found when comparing podman v1 --help versus V2
* Updated the broken links for the docs.
* Updated the broken links for the docs.
* image removal: refactor part 2
* build(deps): bump github.com/uber/jaeger-client-go
* Bump github.com/sirupsen/logrus from 1.5.0 to 1.6.0
* [CI:DOC]Use full repo name in podmanimage Dockerfiles
* Fix errors found in coverity scan
* Remove skip on containers.conf tests
* cgroupsns was not following containers.conf
* Properly handle default capabilities listed in containers.conf
* Properly handle containers.conf devices
* [CI:DOCS] Bring README.md up to date
* And system prune feature for v2.
* Fix errors found in coverity scan
* check --get-login when login
* search --limit compatible with docker
* add provided cni networks to spec gen
* fix commands without input
* System tests: help messages: check required-arg
* v2networking enable commands
* V2 Commands that require ParentNS (rootful) are report error
* Cirrus: Utilize new cache images
* Cirrus: Utilize new base images
* cirrus: Update to Fedora 32 proper
* Enable prune integration test. Fixes container prune.
* test: enable start tests
* podman, start: propagate back the raw input
* test: enable remaining run tests
* test: enable entrypoint tests
* test: enable create tests
* cmd, podman: do not override entrypoint if unset
* cmd, podman: use String instead of variable+StringVar
* cmd, podman: handle --pod new:POD
* create: propagate override-arch and override-os
* testv2: enable attach test
* V2 enable ps tests
* enable final system test
* V2 restore podman -v command
* V2 Restore images list tests
* enable search tests
* pull/search options: tls verify -> skip
* test: enable cp tests
* login system test: enable "push ok"
* enable the push e2e tests
* push: fix --tls-verify
* push: simplify cmd
* rootlessport: use two different channels
* specgen: honor slirp4netns
* rootless: move ns open before fork
* push: fix push with one argument
* enable inspect tests
* generate systemd
* Update release notes and README for 1.9.1 release
* Update podmanimage files to adjust perms on containers.conf for rootless
* User specified environment happen after other environments are set
* system tests must pass
* Fixes podman save fails when specifying an image using a digest #5234
* Fix typos in rm messages
* check image media/manifest type for healthchecks
* test: enable exec tests
* pkg, specgen: do not hardcode user=0 in the config if not specified
* specgen: remove dead code
* cmd: set correct parent for container exec
* Set up ulimits for rootless containers.
* enable build tests
* enable volume integration tests
* separate healthcheck and container log paths
* install.md: Fix typo
* Improve Entrypoint and Command support
* Add support for volumes-from, image volumes, init
* Fix NewSpecGenerator args in pkg/bindings/test
* enable load integration tests
* test: enable all pod tests
* libpod: set hostname from joined container
* namespaces: accept pod namespace
* pkg, ps: add namespaces methods
* enable integration tests for restart
* Make podman container list == podman ps
* test: enable pod rm tests
* pkg, pods: report pod rm errors
* pkg, pods: pod rm honors --ignore
* test: enable pod restart tests
* pkg, pods: not lose pod start/restart errors
* test: enable pod stop tests
* pkg, pods: honor --ignore for pod stop
* test: enable pod create tests
* specgen: relax test to accept default network
* spec, pod: honor --dns
* spec: propagate --no-hosts to specgen
* sort .gitignore
* .gitignore: add pkg/api/swagger.yaml
* build(deps): bump github.com/rootless-containers/rootlesskit
* implement pod stats
* test: fix check for pause on cgroup v2
* test: fix pause tests
* cmd, ps: add .Status as synonym for .State
* test: enable healthcheck tests
* podman: handle --no-healthcheck
* specgen: read healthchecks from the image
* podman: special case health-cmd none
* Enable pod inspect integration test
* Enable pod prune integration test
* enable run_restart integration tests
* enable run_ns integration tests
* enable run_signal integration tests
* Enable these tests
* Enable container inspect integration tests
* Enable pod ps integration tests
* Cleanup man pages for pull and push
* Adding system prune for podman v2
* V2 tests: enables commit tests
* Add --os to manifest add
* containers, init: skip invalid state errors with --all
* podman: assume user namespace if there are mappings
* Do not join pod namespaces without an infra ctr
* podman: implement userns=keep-id
* Cirrus: Utilize new VM images
* Cirrus: Unify package installation
* test: enable cgroup parent tests
* podman: fix --log-opt=path=%s
* podman: fix --http-proxy
* podman: fix podman --group-add
* test: fix --host-env test
* podman: fix --cgroups=disabled
* test: enable some run_test.go tests that pass now
* podman: add support for --rootfs
* Bump github.com/containers/common from 0.9.4 to 0.9.5
* specgen: fix error message
* create: move validate after setting default ns
* remove blank line
* set bigfilestemporarydir for pull
* Fix SELinux functions names to not be repetitive
* foo: delete spurious file
* Makefile: include -nobuild install targets
* podman: handle namespaces specified on the CLI
* specgen: do not always set shmsize
* pkg: fix shmsize error message
* Stop wrapping pull messages
* manifest create,add,inspect
* V2 Restore rmi tests
* V2 restore libpod.Shutdown() when exiting podman commands
* Turn on version.go except for -v check
* Fix podman push and podman pull to check for authfile
* Enable basic volumes support in Podmanv2
* Move selinux labeling support from pkg/util to pkg/selinux
* Fix integration tests for untag
* Instrumentation to answer #5765
* test rootless_storage_path from strorage.conf
* V2 Restore exists E2E tests
* Fix podman rm to have correct exit codes
* Fix v2 test podman info
* Fix handling of --cidfile on create/run
* vendor in containers/common v0.9.4
* Handle hostname flag from client
* Add support for devices from command line
* Fix handling of CGroupsParent and CGroupsMode
* Throw error on IPv6 ip addresses
* Force integration tests to pass
* Modify namespace generation code for specgen
* Bump to github.com/containers/common to v0.9.2
* my bad
* Provide a json variable pointing to a configured json API
* podmanv2 cp
* gate/README.md Fix link to .cirrus.yml and reword
* add entrypoint from image where needed
* Makefile: fix broken chcon for podman-remote
* podmanv2 container subcommands
* v2podman port
* v2: implement log{in,out}
* Move Fedora dependencies for building podman into separate file
* v2, podman: plug --userns=auto
* podman: do not set empty cgroup limit blocks
* Handle annotations passed in via the client
* Need to set the Entrypoint
* Fix podman inspect to return errors on failure
* pkg: implement rlimits
* podman rmi: refactor logic
* Add support for containers.conf to podmanimages
* Update podman to use containers.conf
* Fix podman inspect to accept -l and -s fields
* Handle Linux Capabilities correctly
* Add functions to return image informations
* V2 Rmove existing unix domain socket on startup
* Cirrus: Add support for Fedora 32
* Cirrus: More Ubuntu 19 + Fedora 31
* V2 podman image tree
* V2 Fix --latest for podman diff commands
* rootless: move join namespace inside child process
* rootless: skip looking up parent user ns
* common: setting cgroup resources correctly
* Update pod inspect report to hold current pod status.
* Pull images when doing podman create
* Return labes in API (fixes #5882)
* Make `find` ignore dot files
* Cleanup network option parsing
* enable integration testing
* V2 Fix support for tcp://[::]<port> connections
* Add pod prune for api v2.
* We were not handling the user option on create
* Fixes for system tests
* Enable some testing
* Log formatter: add BATS summary line
* Bump github.com/containers/psgo from 1.4.0 to 1.5.0
* podmanV2: implement build
* Fix bug where two configurations had been created
* Podman V2 birth
* V2 Enable rootless
* Add SELinux volume information to troubleshoot.md
* podman v2 remove bloat v2
* allow filters to work when listing containers
* Update podman-generate-systemd man page
* .gitignore: ignore v2 remote
* Bump github.com/containers/common from 0.9.0 to 0.9.1
* Add version to podman info command
* Add basic structure of output for APIv2 pod inspect
* v2 bloat pruning phase 2
* Add support for selecting kvm and systemd labels
* Fix up SELinux labeling
* podmanv2 fix runtime assignment
* Cirrus: Fix gate container build failure
* logformat: handle apiv2 results, add anchor links
* Update README to reflect that latest version is v1.9.0
* Ability to prune container in api V2
* Bump to v2.0.0-dev
* podmanv2 events
* test case added for image prune cache image
* note for skipping cache image added.
* image prune skips images with child images.
* swagger-check: new CI tool to cross-check swagger
* auto update: skip non-image policies
* build(deps): bump github.com/containers/common from 0.8.1 to 0.9.0
* logformat: handle apiv2 results, add anchor links
* If possible use the pod name when creating a network
- Changelog for v1.9.0 (2020-04-15)
* podmanV2: fix nil deref
* v2specgen prune libpod
* More system test fixes on regressions
* Add support for the global flags and config files
* Bump to v1.9.0-dev
- Changelog for v1.9.0-rc2 (2020-04-14)
* Update release notes for v1.9.0-RC2
* v2podman ps revert structure changes
* podmanv2 mount and umount
* Fix invalid container path comparison for pid cgroup
* v2podman add container init
* Need to set security options even if user does not specify options
* podmanv2 version format variable name change
* Fixes for load and other system tests
* Improve APIv2 support for Attach
* Refactor service idle support
* podmanv2 history and image remove templates
* Bump to v1.9.0-dev
* rootless: use snprintf
* podmanV2: implement search
- Changelog for v1.9.0-rc1 (2020-04-13)
* build(deps): bump github.com/containers/buildah from 1.14.7 to 1.14.8
* Update release notes for v1.9.0-RC1
* v2podman container cleanup
* podmanV2: implement logs
* test: enable preserve fds test for crun
* test: fix exec preserve-fds test
* Set exit codes on errors.
* Run (make vendor)
* Fix (make vendor)
* update the latest version to 1.8.2
* add tests for kill and exists
* v2podman ps alter formats
* run/create were processing options after the image name
* V2 podman system service
* man page: add note about issue with SELinux
* Bump Buildah to v1.14.7
* Bump containers/image to v5.4.3
* V2 podman diff(changes) support
* podman info needs to be run within the user namespace
* podmanv2 images user format
* podmanv2 info
* vendor c/image v5.4.2
* Do not error on pids.current stats if ctr.path is empty
* fix rootless login/logout tests
* v2podman run
* refactor info
* podmanv2 ps
* userns: support --userns=auto
* podmanv2 start
* build(deps): bump github.com/containers/common from 0.8.0 to 0.8.1
* build(deps): bump github.com/containers/storage from 1.18.1 to 1.18.2
* build(deps): bump github.com/opencontainers/selinux from 1.4.0 to 1.5.0
* v2podman attach and exec
* v2podman container create
* Cleanup whether to enter user namespace for rootless commands
* podmanv2 save image
* podmanv2 version
* checkpoint: handle XDG_RUNTIME_DIR
* checkpoint: change runtime checkpoint support test
* Pass path environment down to the OCI runtime
* podmanv2 checkpoint and restore
* Bump github.com/containers/common from 0.6.1 to 0.8.0
* test/e2e/run_volume_test: use unique mount point
* test/e2e/run_volume_test.go: mv dockerfile decl
* test/e2e/run_volume_test: only create dir once
* Fix environment handling from containers.conf
* podmanV2: implement push
* pkg/spec.InitFSMounts: optimize
* utils: delete dead code
* attach: skip shutdown on errors
* attach: fix hang if control path is deleted
* pkg/spec.InitFSMounts: fix mount opts in place
* podmanv2 export
* podmanv2 import
* podmanv2-retry - new helper for testing v2
* podmanv2 load
* podmanv2 pod inspect
* V2 podman inspect
* Fix repos for CentOS 7 RPM build
* podman v2 image tag and untag
* podmanv2 pod ps
* Touch up mailing list address in README.md
* add systemd build tag to podman builds
* Bump github.com/rootless-containers/rootlesskit from 0.9.2 to 0.9.3
* Switch to using --time as opposed to --timeout to better match Docker.
* podmanV2: implement pull
* pkg/spec/initFSMounts: fix
* Cirrus: Remove darwin/windows builds in gate-job
* Cirrus: Update VM Images
* Cirrus: Minor docs update
* Revert "Default CPUShares in Inspect are 1024"
* fix more swagger inconsistencies
* V2 Move varlink home
* Bump github.com/containers/conmon
* Bump github.com/spf13/cobra from 0.0.6 to 0.0.7
* rootless: make cgroup ownership detection not fatal
* podmanv2 enable healthcheck run
* Update vendor of boltdb and containers/image
* swagger: top: remove "Docker" from the identifiers
* podmanv2: implement pod top
* v2 api: implement pods top endpoint
* podmanv2 commit
* Bump to buildah v1.14.5 (Edit 2020-06-03: Addresses CVE-2020-10696)
* Add support for containers.conf
* API v2 tests: usability improvements
* Sanitize port parsing for pods in play kube
* podmanv2 pod create using podspecgen
* use `pause:3.2` image for infra containers
* Add support for specifying CNI networks in podman play kube
* Fix typo in pod create
* podmanV2: implement top
* Fix Markdown typo in podman-create.1.md
* V2 podman image prune
* Support label filters for podman pod ps.
* podmanv2 container inspect
* podmanv2 pod subcommands
* Add bindings for Container Exec Create + Inspect
* apiv2 add default network in specgen
* slirp: enable seccomp filter
* V2 podman image rm | podman rmi [IMAGE]
* V2 podman image
* podmanv2 add pre-run to each commmand
* Ensure that exec sends resize events
* enable linting on v2
* Bump github.com/rootless-containers/rootlesskit from 0.8.0 to 0.9.2
* Bump github.com/containers/storage from 1.16.5 to 1.16.6
* V2 podman images/image list
* podmanv2 volumes
* Combine GlobalFlags and EngineFlags into EngineOptions
* Complete podmanV2 history command
* rootlessport: use x/sys/unix instead of syscall
* podmanv2 exit code
* Bump github.com/sirupsen/logrus from 1.4.2 to 1.5.0
* Correctly document libpod commit endpoint
* Implement APIv2 Exec Create and Inspect Endpoints
* apiv2 container commit for libpod
* Add image signing with GPG tutorial
* podmanv2 add core container commands
* Improved readability in image json output
* podmanv2 volume create
* Add stubs for cmd/podman in non-Linux local mode
* Make libpod/lock/shm completely Linux-only
* Add stubs for pkg/adapter/terminal_linux.go
* Add a stub for libpod.Container.Top
* Make cmd/podman/shared.GenerateCommand tests Linux-only
* Fix the libpod.LabelVolumePath stub
* Only run TestGetImageConfigStopSignal on Linux
* Fix the pkg/specgen/SpecGenerator.getSeccompConfig stub
* podmanv2 pod exists
* when removing networks for tests, force should be used
* Add basic structure of a spec generator for pods
* [CI:DOCS]fix type issue in pod binding test
* podmanv2 enable remote wait
* fix remote connection use of context
* use boolreport for containerexists response
* podmanv2 container exists|wait
* Add APIV2 service files
* Attempt manual removal of CNI IP allocations on refresh
* Implemented --iidfile for podman commit
* Add guildline for writing podman V2 CLI commands
* Use creds form PullImage remote
* Fix docker man page links
* Bump to v1.8.3-dev
* [CI:DOCS]remove podmanv2 binary
* Cirrus: Update VM images
* Cirrus-CI: Fix source path of vendor task
* Cirrus: Enable future installing buildah packages
* Cirrus: Include packages for buildah CI
* Cirrus: Update Ubuntu base images
* Cirrus: Use opensuse open build Ubuntu packages
* Update release notes for v1.8.2 final release
* rootlessport: handle SIGPIPE
* apiv2 add bindings for logs|events
* Bump github.com/containers/common from 0.5.0 to 0.6.1
* Add inspect for exec sessions
* Add structure for new exec session tracking to DB
* Populate ExecSession with all required fields
* Fix path of tmp_dir
* Cirrus: Disable non-docs release processing
* container prune remove state created, configured
* Cirrus: Log libseccomp package version
* docs: mention that "podman version" prints out Remote API Version
- Changelog for v1.8.2 (2020-03-19)
* fix reported compat issues
* Don't include SUBDIR in windows.zip
* rootless: fix usage with hidepid=1
* V2 podman command
* serve swagger when present
* swagger: more consistency fixes
* Vendor in containers/buildah v1.14.3
* Reduce CPU usage when --timeout=0
* New test: man page cross-ref against --help
* podman: avoid conmon zombie on exec
* Filter pods through pod list api
* Bump to v1.8.2-dev
* Fix vendoring on master
* fix timeout file flake
* auto updates
* pkg/systemd: add dbus support
- Changelog for v1.8.2-rc1 (2020-03-17)
* Update release notes for v1.8.2-rc1
* Fix vendoring on master
* Update containers/storage to v1.16.5
* config: make warning clearer
* Four small CI fixes:
* fix systemd generate tests
* apiv2 addition of manifests
* add os|arch attributes when building
* Missing double quotes in troubleshooting guide.
* force run container detached if container CreateCommand missing the detach param
* Bump github.com/containers/common from 0.4.2 to 0.5.0
* Bump k8s.io/api from 0.17.3 to 0.17.4
* Bump github.com/fsnotify/fsnotify from 1.4.7 to 1.4.9
* eat signal 23 in signal proxy
* add apiv2 healthcheck code
* turn off color-mode for bindings
* remove imagefilter for varlink remote client
* Bump github.com/containers/storage from 1.16.2 to 1.16.3
* run --rmi test: make it work
* rootlessport: detect rootless-child exit
* create: do not calculate image size
* Follow up changes from #5244
* man page cross-reference fixes: part 2
* Update version in README to v1.8.1
* [CI:DOCS]Add libpod event endpoint
* Bump to v1.8.2-dev
* Update start stop api to use pod status function.
* Fix bug podman reset to not remove $XDG_RUNTIME_DIR
- Changelog for v1.8.1 (2020-03-11)
* man pages: fix inconsistencies
* Update release notes for v1.8.1 final release
* build for amd64|arm|ppc64le
* update systemd & dbus dependencies
* Refactor handler packages
* Remove nonexistent --set arg from runlabel documentation
* hide --trace flag
* podman --help: mention defaults of bools
* docs: clarify that --syslog expects an argument
* Bump to v1.8.1-dev
* commands: rename file and add likns to readthedocs
- Changelog for v1.8.1-rc4 (2020-03-09)
* Revert "exec: get the exit code from sync pipe instead of file"
* Revert "Exec: use ErrorConmonRead"
* Revert "exec: fix error code when conmon fails"
* rootles tutorial: remove systemd unit example
* generate systemd: add `default.target` to INSTALL
* Bump github.com/containers/storage from 1.16.1 to 1.16.2
* use storage/pkg/ioutils
* use storage/pkg/homedir
* Fix spelling mistakes in code found by codespell
* add default network for apiv2 create
* Bump to v1.8.1-dev
* Allow users to set TMPDIR environment
* Fix upstream dockerfile and add 'by hand' ctrfile
* Cirrus: Fix fedora-minimal mirroring
* fix security-opt generate kube
- Changelog for v1.8.1-rc3 (2020-03-06)
* Update release notes for v1.8.1-RC3
* Part 2: try to clean up the long image instance names
* WIP: Try renaming long cirrus job names
* vendor: update github.com/containernetworking/cni to v0.7.2-0.20200304161608-4fae32b84921
* Removed extraneous comments and defaults plus amended variable declaration
* Removed the unnecessary code
* Implemented size parameter on GetContainer
* Implement size parameter on ListContainers
* Map configured status to created to match docker API states
* Fix to remove null entry from end of images json
* Register handlers without version to align with docker API
* golangci: enable goimports
* generate systemd: remove leading slashes
* exec: fix error code when conmon fails
* Vendor buildah 1.14.2
* env: don't set "container" env
* Fix podman image sign help output
* avoid adding to nil map
* Exec: use ErrorConmonRead
* exec: get the exit code from sync pipe instead of file
* generate systemd: add network dependencies
* Bump to Buildah v1.14.1
* APIv2 tests: add tests for stop
* Add the rmi flag to podman-run to delete container image
* consolidate env handling into pkg/env
* CI: format cirrus logs
* Update docs/source/markdown/podman-build.1.md
* Allow devs to set labels in container images for default capabilities.
* CI: add API v2 tests
* more swagger fixes
* Bump github.com/opencontainers/selinux from 1.3.2 to 1.3.3
* Add validate() for containers
* Cirrus: Fix gate image & false-positive exits
* Update pod bindings and Add test to validate prune pod apiv2 binding.
* Fix wrong condition in bindings test
* Ensure that exec sessions inherit supplemental groups
* Cirrus: Update VM images
* Cirrus: Force runc use in F30
* rework apiv2 wait endpoint|binding
* build: specify input fd to buildah
* Cirrus: Remove unnecessary handle_crun workaround
* Cirrus: Print env. vars at end of setup.
* Cirrus: Fix not growing Fedora root
* network create should use firewall plugin
* add firewall plugin (no backend) to default cni config
* binding tests for volumes
* Bump to v1.8.1-dev
* container Exists: fix URL
* CI: package_versions: include hostinfo, kernel
* Review comments
* [WIP] Add cmd flag to show container name in log
- Changelog for v1.8.1-rc2 (2020-02-27)
* Update release notes for v1.8.1-rc2
* Vendor in latest containers/buildah
* kill test: clean up warnings; document better
* curb flakes in integration tests
* spec: allow container alias name in lookup
* add epoch for specfile
* fix trivial typo
* Add support for multiple CNI networks in podman inspect
* Remove 1 sec delay
* Temp. skip "remove pause by id" bindings test
* Fix kill test obtaining CID
* System Tests: Force default signal handlers
* Fix cgroupsv2 run test, unexpected output
* Cirrus: SELinux Enforcing for F31 w/ CGv2
* Cirrus: collect podman system info
* Cirrus: F31: Force systemd cgroup mgr
* Cirrus: Temp. disable F31 p-in-p testing
* Cirrus: Handle runc->crun when both are possible
* Cirrus: Use deadline elevator in F31
* Cirrus: Support testing with F31
* rootless: become root only if the pause file is specified
* rootless: fix segfault when open fd >= FD_SETSIZE
* apiv2 tests: add more pod tests, timing check
* Update vendor of buildah and containers/common
* build: move initialization after SetXdgDirs
* utils: relax check for directory to use
* add apiv2 tests for podman pause and stop
* always run the docs task on post-merge
* Fixed build_rpm.sh script for Fedora 30
* Add basic deadlock detection for container start/remove
* Friendly amendment: tests, and a help message
* fix port list by container with port
* more image binding tests
* docs: symlink to host device is resolved
* Add --no-healthcheck command to create/run
* enable ci on go binding tests
* add more image tests for go bindings
* Bump to v1.8.1-dev
* build(deps): bump github.com/opencontainers/selinux from 1.3.1 to 1.3.2
- Changelog for v1.8.1-rc1 (2020-02-21)
* Update release notes for v1.8.1
* disable generation of cni firewall plugin
* search endpoint failure correction
* Remove ImageVolumes from database
* Upgrade make package-install for fedora31
* Flake fix: race condition in same-IP test
* Add support for ssh:// and unix:// podman clients
* search test on fedora registry: retry 5 times
* Swagger: yet more fixes
* Login test: use --password-stdin
* implement reverse reader for log reads
* podman images: add --filter=since=XX
* populate resolv.conf with dnsname responses when in usernamespace
* Beautify podman bridge CNI config
* build(deps): bump github.com/spf13/cobra from 0.0.5 to 0.0.6
* Warn user about --password cli option in login
* build(deps): bump github.com/stretchr/testify from 1.5.0 to 1.5.1
* Swagger: fix one incorrect comment
* apiv2 container create using specgen
* Add test to validate the pod bindings api
* Update to the latest version of buildah
* New login and push tests
* Add network options to podman pod create
* Fixed syscall.Signal not convertable by decoder
* Fixed typo in KillContainer
* build(deps): bump github.com/containers/storage from 1.15.8 to 1.16.0
* build(deps): bump github.com/stretchr/testify from 1.4.0 to 1.5.0
* libpod.conf: clarify `label` description