forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
6837 lines (6748 loc) · 299 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 v3.2.0-rc1 (2021-05-05)
* migrate Podman to containers/common/libimage
* add --mac-address to podman play kube
* compat api: Networks must be empty instead of null
* System tests: honor $OCI_RUNTIME (for CI)
* is this a bug?
* system test image: add arm64v8 image
* Fix troubleshooting documentation on handling sublemental groups.
* Add --all to podman start
* Fix variable reference typo. in multi-arch image action
* cgroup: always honor --cgroup-parent with cgroupfs
* Bump github.com/uber/jaeger-client-go
* Don't require tests for github-actions & metadata
* Detect if in podman machine virtual vm
* Fix multi-arch image workflow typo
* [CI:DOCS] Add titles to remote docs (windows)
* Remove unused VolumeList* structs
* Cirrus: Update F34beta -> F34
* Update container image docs + fix unstable execution
* Bump github.com/containers/storage from 1.30.0 to 1.30.1
* TODO complete
* Docker returns 'die' status rather then 'died' status
* Check if another VM is running on machine start
* [CI:DOCS] Improve titles of command HTML pages
* system tests: networking: fix another race condition
* Use seccomp_profile as default profile if defined in containers.conf
* Bump github.com/json-iterator/go from 1.1.10 to 1.1.11
* Vendored
* Autoupdate local label functional
* System tests: fix two race conditions
* Add more documentation on conmon
* Allow docker volume create API to pass without name
* Cirrus: Update Ubuntu images to 21.04
* Skip blkio-weight test when no kernel BFQ support
* rootless: Tell the user what was led to the error, not just what it is
* Add troubleshooting advice about the --userns option.
* Fix images prune filter until
* Fix logic for pushing stable multi-arch images
* Fixes generate kube incorrect when bind-mounting "/" and "/root"
* libpod/image: unit tests: don't use system's registries.conf.d
* runtime: create userns when CAP_SYS_ADMIN is not present
* rootless: attempt to copy current mappings first
* [CI:DOCS] Restore missing content to manpages
* [CI:DOCS] Fix Markdown layout bugs
* Fix podman ps --filter ancestor to match exact ImageName/ImageID
* Add machine-enabled to containers.conf for machine
* Several multi-arch image build/push fixes
* Add podman run --timeout option
* Parse slirp4netns net options with compat api
* Fix rootlesskit port forwarder with custom slirp cidr
* Fix removal race condition in ListContainers
* Add github-action workflow to build/push multi-arch
* rootless: if root is not sub?id raise a debug message
* Bump github.com/containers/common from 0.36.0 to 0.37.0
* Add go template shell completion for --format
* Add --group-add keep-groups: suplimentary groups into container
* Fixes from make codespell
* Typo fix to usage text of --compress option
* corrupt-image test: fix an oops
* Add --noheading flag to all list commands
* Bump github.com/containers/storage from 1.29.0 to 1.30.0
* Bump github.com/containers/image/v5 from 5.11.0 to 5.11.1
* [CI:DOCS] Fix Markdown table layout bugs
* podman-remote should show podman.sock info
* rmi: don't break when the image is missing a manifest
* [CI:DOCS] Rewrite --uidmap doc in podman-create.1.md and podman-run.1.md
* Add support for CDI device configuration
* [CI:DOCS] Add missing dash to verbose option
* Bump github.com/uber/jaeger-client-go
* Remove an advanced layer diff function
* Ensure mount destination is clean, no trailing slash
* add it for inspect pidfile
* [CI:DOCS] Fix introduction page typo
* support pidfile on container restore
* fix start it
* skip pidfile test on remote
* improve document
* set pidfile default value int containerconfig
* add pidfile in inspection
* add pidfile it for container start
* skip pidfile it on remote
* Modify according to comments
* WIP: drop test requirement
* runtime: bump required conmon version
* runtime: return findConmon to libpod
* oci: drop ExecContainerCleanup
* oci: use `--full-path` option for conmon
* use AttachSocketPath when removing conmon files
* hide conmon-pidfile flag on remote mode
* Fix possible panic in libpod/image/prune.go
* add --ip to podman play kube
* add flag autocomplete
* add ut
* add flag "--pidfile" for podman create/run
* Add network bindings tests: remove and list
* Fix build with GO111MODULE=off
* system tests: build --pull-never: deal with flakes
* compose test: diagnose flakes v3
* podman play kube apply correct log driver
* Fixes podman-remote save to directories does not work
* Bump github.com/rootless-containers/rootlesskit from 0.14.1 to 0.14.2
* Update documentation of podman-run to reflect volume "U" option
* Fix flake on failed podman-remote build : try 2
* compose test: ongoing efforts to diagnose flakes
* Test that we don't error out on advertised --log-level values
* At trace log level, print error text using %+v instead of %v
* pkg/errorhandling.JoinErrors: don't throw away context for lone errors
* Recognize --log-level=trace
* Fix flake on failed podman-remote build
* System tests: fix racy podman-inspect
* Fixes invalid expression in save command
* Bump github.com/containers/common from 0.35.4 to 0.36.0
* Update nix pin with `make nixpkgs`
* compose test: try to get useful data from flakes
* Remove in-memory state implementation
* Fix message about runtime to show only the actual runtime
* System tests: setup: better cleanup of stray images
* Bump github.com/containers/ocicrypt from 1.1.0 to 1.1.1
* Reflect current state of prune implementation in docs
* Do not delete container twice
* [CI:DOCS] Correct status code for /pods/create
* vendor in containers/storage v1.29.0
* cgroup: do not set cgroup parent when rootless and cgroupfs
* Overhaul Makefile binary and release worflows
* Reorganize Makefile with sections and guide
* Simplify Makefile help target
* Don't shell to obtain current directory
* Remove unnecessary/not-needed release.txt target
* Fix incorrect version number output
* Exclude .gitignore from test req.
* Fix handling of $NAME and $IMAGE in runlabel
* Update podman image Dockerfile to support Podman in container
* Bump github.com/containers/image/v5 from 5.10.5 to 5.11.0
* Fix slashes in socket URLs
* Add network prune filters support to bindings
* Add support for play/generate kube volumes
* Update manifest API endpoints
* Fix panic when not giving a machine name for ssh
* cgroups: force 64 bits to ParseUint
* Bump k8s.io/api from 0.20.5 to 0.21.0
* [CI:DOCS] Fix formatting of podman-build man page
* buildah-bud tests: simplify
* Add missing return
* Bump github.com/onsi/ginkgo from 1.16.0 to 1.16.1
* speed up CI handling of images
* Volumes prune endpoint should use only prune filters
* Cirrus: Use Fedora 34beta images
* Bump go.sum + Makefile for golang 1.16
* Exempt Makefile changes from test requirements
* Adjust libpod API Container Wait documentation to the code
* [CI:DOCS] Update swagger definition of inspect manifest
* use updated ubuntu images
* podman unshare: add --rootless-cni to join the ns
* Update swagger-check
* swagger: remove name wildcards
* Update buildah-bud diffs
* Handle podman-remote --arch, --platform, --os
* buildah-bud tests: handle go pseudoversions, plus...
* Fix flaking rootless compose test
* rootless cni add /usr/sbin to PATH if not present
* System tests: special case for RHEL: require runc
* Add --requires flag to podman run/create
* [CI:DOCS] swagger-check: compare operations
* [CI:DOCS] Polish swagger OpertionIDs
* [NO TESTS NEEDED] Update nix pin with `make nixpkgs`
* Ensure that `--userns=keep-id` sets user in config
* [CI:DOCS] Set all operation id to be compatibile
* Move operationIds to swagger:operation line
* swagger: add operationIds that match with docker
* Cirrus: Make use of shared get_ci_vm container
* Don't relabel volumes if running in a privileged container
* Allow users to override default storage opts with --storage-opt
* Add support for podman --context default
* Verify existence of auth file if specified
* fix machine naming conventions
* Initial network bindings tests
* Update release notes to indicate CVE fix
* Move socket activation check into init() and set global condition.
* Bump github.com/onsi/ginkgo from 1.15.2 to 1.16.0
* Http api tests for network prune with until filter
* podman-run.1.md, podman-create.1.md : Adjust Markdown layout for --userns
* Fix typos --uidmapping and --gidmapping
* Add transport and destination info to manifest doc
* Bump github.com/rootless-containers/rootlesskit from 0.14.0 to 0.14.1
* Add default template functions
* Fix missing podman-remote build options
* Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1
* Add ssh connection to root user
* Add rootless docker-compose test to the CI
* Use the slrip4netns dns in the rootless cni ns
* Cleanup the rootless cni namespace
* Add new docker-compose test for two networks
* Make the docker-compose test work rootless
* Remove unused rootless-cni-infra container files
* Only use rootless RLK when the container has ports
* Fix dnsname test
* Enable rootless network connect/disconnect
* Move slirp4netns functions into an extra file
* Fix pod infra container cni network setup
* Add rootless support for cni and --uidmap
* rootless cni without infra container
* Recreate until container prune tests for bindings
* Remove --execute from podman machine ssh
* Fixed podman-remote --network flag
* Makefile: introduce install.docker-full
* Makefile: ensure install.docker creates BINDIR
* Fix unmount doc reference in image.rst
* Should send the OCI runtime path not just the name to buildah
* podman machine shell completion
* Fix handling of remove --log-rusage param
* Fix bindings prune containers flaky test
* [CI:DOCS] Add local html build info to docs/README.md
* Add podman machine list
* Trim white space from /top endpoint results
* Remove semantic version suffices from API calls
* podman machine init --ignition-path
* Document --volume from podman-remote run/create client
* Update main branch to reflect the release of v3.1.0
* Silence podman network reload errors with iptables-nft
* Containers prune endpoint should use only prune filters
* resolve proper aarch64 image names
* APIv2 basic test: relax APIVersion check
* Add machine support for qemu-system-aarch64
* podman machine init user input
* manpage xref: helpful diagnostic for unescaped dash-dash
* Bump to v3.2.0-dev
* swagger: update system version response body
* buildah-bud tests: reenable pull-never test
* [NO TESTS NEEDED] Shrink the size of podman-remote
* Add powershell completions
* [NO TESTS NEEDED] Drop Warning to Info, if cgroups not mounted
* Fix long option format on docs.podman.io
* system tests: friendier messages for 2-arg is()
* service: use LISTEN_FDS
* man pages: correct seccomp-policy label
* rootless: use is_fd_inherited
* podman generate systemd --new do not duplicate params
* play kube: add support for env vars defined from secrets
* play kube: support optional/mandatory env var from config map
* play kube: prepare supporting other env source than config maps
* Add machine support for more Linux distros
* [NO TESTS NEEDED] Use same function podman-remote rmi as podman
* Podman machine enhancements
* Add problematic volume name to kube play error messages
* Fix podman build --pull-never
* [NO TESTS NEEDED] Fix for kernel without CONFIG_USER_NS
* [NO TESTS NEEDED] Turn on podman-remote build --isolation
* Fix list pods filter handling in libpod api
* Remove resize race condition
* [NO TESTS NEEDED] Vendor in containers/buildah v1.20.0
* Use TMPDIR when commiting images
* Add RequiresMountsFor= to systemd generate
* Bump github.com/vbauerster/mpb/v6 from 6.0.2 to 6.0.3
* Fix swapped dimensions from terminal.GetSize
* Rename podman machine create to init and clean up
* Correct json field name
* system tests: new interactive tests
* Improvements for machine
* libpod/image: unit tests: use a `registries.conf` for aliases
* libpod/image: unit tests: defer cleanup
* libpod/image: unit tests: use `require.NoError`
* Add --execute flag to podman machine ssh
* introduce podman machine
* Podman machine CLI and interface stub
* Support multi doc yaml for generate/play kube
* Fix filters in image http compat/libpod api endpoints
* Bump github.com/containers/common from 0.35.3 to 0.35.4
* Bump github.com/containers/storage from 1.28.0 to 1.28.1
* Check if stdin is a term in --interactive --tty mode
* [NO TESTS NEEDED] Remove /tmp/containers-users-* files on reboot
* [NO TESTS NEEDED] Fix rootless volume plugins
* Ensure manually-created volumes have correct ownership
* Bump github.com/rootless-containers/rootlesskit
* Unification of until filter across list/prune endpoints
* Unification of label filter across list/prune endpoints
* fixup
* fix: build endpoint for compat API
* [CI:DOCS] Add note to mappings for user/group userns in build
* Bump github.com/coreos/go-systemd/v22 from 22.1.0 to 22.3.0
* Bump k8s.io/api from 0.20.1 to 0.20.5
* Validate passed in timezone from tz option
* Fix system prune cmd user message with options
* WIP: run buildah bud tests using podman
* Fix containers list/prune http api filter behaviour
* System tests: reenable a bunch of skipped tests
* Generate Kubernetes PersistentVolumeClaims from named volumes
* Cleanup /libpod/images/load handler
* vendor: drop replace for github.com/syndtr/gocapability
* security: use the bounding caps with --privileged
* Bump github.com/containers/common from 0.35.0 to 0.35.3
* Bump k8s.io/apimachinery from 0.20.4 to 0.20.5
* Fix volumes and networks list/prune filters in http api
* Bump github.com/containers/storage from 1.25.0 to 1.28.0
* add a dependabot config to automate vendoring
* Bump github.com/onsi/ginkgo from 1.15.1 to 1.15.2
* network prune filters for http compat and libpod api
* test: check for io.stat existence on cgroup v2
* test: fix test for last crun/runc
* test: simplify cgroup path
* Latest crun/runc should handle blkio-weight test
* fix user message image prune --all
* Docs: removing secrets is safe for in-use secrets
* Downgrade github.com/coreos/go-systemd/v22
* pkg/bindings/images.Build(): fix a race condition in error reporting
* Switch all builds to pull-never
* System test cleanup
* Fix for volumes prune in http compat api
* Fix remote client timezone test
* Do not leak libpod package into the remote client
* Split libpod/network package
* fix use with localhost (testing)
* add /auth for docker compatibility
* create endpoint for querying libpod networks
* Bump github.com/sirupsen/logrus from 1.8.0 to 1.8.1
* sdnotify tests: try real hard to kill socat processes
* Fix array instead of one elem network http api
* Delete all containers and pods between tests
* apiv2 tests: finally fix POST as originally intended
* Document CONTAINERS_CONF/CONTAINERS_STORAGE_CONF Env variables
* Removing a non existing container API should return 404
* Docs: Add docs to access APIs inside container
* options: append CLI graph driver options
* podman load: fix error handling
* podman cp: evaluate symlink correctly when copying from container
* rm pkg/api/handlers/libpod/copy.go
* podman cp: fix copying to a non-existent dir
* podman cp: fix ownership
* podman cp: ignore EPERMs in rootless mode
* vendor buildah@v1.19.8
* apiv2 tests: add helpers to start/stop a local registry
* Bump to v3.1.0-dev
* allow the removal of storage images
* podman-remote build does not support volumes
* Update nix pin with `make nixpkgs`
* Bump github.com/coreos/go-systemd/v22 from 22.1.0 to 22.2.0
* [Compat API] Also print successfully tagging images in /build endpoint
- Changelog for v3.1.0-rc1 (2021-03-08)
* Compat API: Avoid trying to create volumes if they already exist
* Bump github.com/onsi/gomega from 1.10.5 to 1.11.0
* Allow users to generate a kubernetes yaml off non running containers
* Bump github.com/onsi/ginkgo from 1.15.0 to 1.15.1
* turn hidden --trace into a NOP
* pkg/terminal: use c/storage/pkg/homedir
* build-arg
* Handle podman build --dns-search
* podman build --build-arg should fall back to environment
* Add support for podman build --ignorefile
* replace local mount consts with libpod/define
* separate file with mount consts in libpod/define
* Correct compat images/{name}/push response
* [NO TESTS NEEDED] Bump pre-commit-hooks version
* [ci skip] Bad formatting fix in build documentation
* Bump github.com/containernetworking/plugins to v0.9.1
* podman-remote stop -time 0 does not work
* Do not return from c.stop() before re-locking
* Fix for podman network rm (-f) workflow
* Bump github.com/containers/buildah from 1.19.6 to 1.19.7
* Add tests for selinux kvm/init labels
* Respect NanoCpus in Compat Create
* podman cp: support copying on tmpfs mounts
* image removal: ignore unknown-layer errors
* Fix cni teardown errors
* Use version package to track all versions
* Check for supportsKVM based on basename of the runtime
* Compat API: create volume source dirs on the host
* Makefile: add install.docker-docs-nobuild for packaging use
* Add /sys/fs/cgroup as readonly path in docs
* Add network summary to compat ps
* Fix possible panic with podman build --iidfile
* Add version field to secret compat list/inspect api
* Tidy duplicate log tests
* Fix support for podman build --timestamp
* Rewrite Rename backend in a more atomic fashion
* Use functions and defines from checkpointctl
* Move checkpoint/restore code to pkg/checkpoint/crutils
* Vendor in checkpointctl
* Support label type dict on compat build
* Makefile: install systemd services conditionally
* podman-system-service.1.md: fix timeout example
* swagger: update the libpodPutArchive operation verb
* Makefile: split install.docker-docs from install.docker
* Bump RootlessKit v0.14.0-beta.0
* Compat api containers/json Ports field is null
* Bump github.com/cri-o/ocicni to latest master
* Refactor python tests to run against python3.9
* APIv2 tests: make more maintainable
* [CI:DOCS] Improve release process docs
* podman rmi: handle corrupted storage better
* Enable cgroupsv2 rw mount via security-opt unmask
* podman-image-sign.1.md: typo fix
* compat api network ls accept both format options
* Enable no_hosts from containers.conf
* Correct compat images/create?fromImage response
* Fix parsing of Tmpfs field in compat create
* prune remotecommand dependency
* system test image: build it multiarch
* Updated based on Jhonce comments
* updated common to 0.35.0
* Refactored file
* swagger: removes the schema type for PodSpecGenerator $ref
* podman-system-connection.1.md: fix copy/paste error
* Add dns search domains from cni response to resolv.conf
* Network connect error if net mode is not bridge
* Sort CapDrop in inspect to guarantee order
* podman upgrade tests
* test: ignore named hierarchies for cgroups=split
* container removal: handle already removed containers
* Bump github.com/rootless-containers/rootlesskit from 0.13.1 to 0.13.2
* Bump k8s.io/apimachinery from 0.20.3 to 0.20.4
* Add U volume flag to chown source volumes
* Replace Labels and Options nulls with {} in NetworkResource
* Cirrus: Temp. disable prior-fedora (F32) testing
* podman cp: test /dev/stdin correctly
* podman cp: treat /dev/stdout correctly
* cgroup: change cgroup deletion logic on v1
* Fix podman network IDs handling
* pr-should-include-tests: recognized "renamed" tests
* --no-header flag implementation for generate systemd
* [NO TESTS NEEDED] Make binding util internal
* Two variations of --new flag added to e2e
* swagger: add missing schema properties
* bump go module to v3
* Fix 'storage.options' indent
* Bump github.com/sirupsen/logrus from 1.7.1 to 1.8.0
* Bump github.com/containers/buildah from 1.19.4 to 1.19.6
* Turn on journald and k8s file logging tests
* Allow podman play kube to read yaml file from stdin
* Log working dir when chdir fails
* Fix segfault in run with memory-swap
* leak fix in rootless_linux.c fcn can_use_shortcut
* Fix journald logs with more than 1 container
* Fix journald logs --follow
* Fix journald logs --since
* fix journald logs --tail 0
* [CI:DOCS]basic networking guide
* cp: treat "." and "/." correctly
* [CI:DOCS] [NO TESTS NEEDED] Update swagger doc for libpod container wait
* Bump k8s.io/apimachinery from 0.20.2 to 0.20.3
* Don't switch on a single case
* Quote URL
* bindings: support simple types that implement fmt.Stringer interface
* API: fix libpod's container wait endpoint condition conversion
* Change source path resolution for volume copy-up
* podman ps --format '{{ .Size }}' requires --size option
* infra: downgrade warning to debug
* Ignore entrypoint=[\"\"]
* Bump github.com/sirupsen/logrus from 1.7.0 to 1.7.1
* Add missing early returns in compat API
* Do not reset storage when running inside of a container
* podman kill should report rawInput not container id
* Fix an issue where copyup could fail with ENOENT
* do not set empty $HOME
* images/create: always pull image
* Fix panic in pod creation
* Bump github.com/rootless-containers/rootlesskit from 0.13.0 to 0.13.1
* podman build: pass runtime to buildah
* correct startup error message
* Add missing params for podman-remote build
* Fix typo podman run doc in flag -pid=mode "efault"
* When stopping a container, print rawInput
* fix create container: handle empty host port
* Don't chown workdir if it already exists
* Fix broken podman generate systemd --new with pods
* fix dns resolution on ubuntu
* e2e: fix network alias test
* fix failing image e2e test
* Update troubleshooting.md
* [NO TESTS NEEDED] Refactor generated code
* Fix superfluous response.WriteHeader call in WaitContainerLibpod()
* change ps Created to unix
* Enable more golangci-lint linters
* make layer-tree lookup errors non-fatal
* Enable whitespace linter
* Enable golint linter
* Enable stylecheck linter
* Update Master to reflect the 3.0 release
* utils: takes the longest path on cgroup v1
* container ps json format miscue
* Bump github.com/spf13/cobra from 1.1.2 to 1.1.3
* utils: create parent cgroups
* utils: ignore unified on cgroupv1 if not present
* utils: skip empty lines
* Correct compat network prune response
* Display correct value for unlimited ulimit
* apiv2: handle docker-java clients pulling
* Rewrite copy-up to use buildah Copier
* bump to v3.1.0-dev
* [NO TESTS NEEDED] Update linter
* Bump github.com/spf13/cobra from 1.1.1 to 1.1.2
* Add shell completion tests for secrets
* Docker APIv2 push sends digest in response body
* Fix compat networks endpoint for a empty result
* hardening flags for fedora rpmbuilds
* [CI:DOCS]First pass at release process
* Restart service when CONTAINERS_CONF changes
* Support annotations from containers.conf
* vendor github.com/containers/image v5.10.2
* APIv2 tests: lots of cleanup
* Fix Docker APIv2 push endpoint
* generate kube: support --privileged
* Bump github.com/containers/ocicrypt from 1.0.3 to 1.1.0
* Implement Secrets
* Bump containers/buildah to v1.19.4
* Allow path completion for podman create/run --rootfs
* Cirrus: Send cirrus-cron report e-mail to list.
* make `podman rmi` more robust
* Implement missing arguments for podman build
* vendor latest containers/common
* add network prune
* fix logic when not creating a workdir
* Bump remote API version to 3.0.0
* play kube selinux test case
* Fix podman network disconnect wrong NetworkStatus number
* Fix per review request
* generate kube: handle entrypoint
* play kube selinux test case
* Increase timeouts in some tests
* Add test for Docker APIv2 wait
* Implement Docker wait conditions
* Improve ContainerEngine.ContainerWait()
* Improve container libpod.Wait*() functions
* Cirrus: Collect ginkgo node logs artifacts
* Bump github.com/containers/storage from 1.24.5 to 1.25.0
* Bump github.com/containernetworking/cni from 0.8.0 to 0.8.1
* bindings: attach: warn correct error
* Fix invalid wait condition on kill
* Makefile: make bin/* real targets!
* typo
* Bump github.com/onsi/gomega from 1.10.4 to 1.10.5
* Update nix pin with `make nixpkgs`
* System test for #9096 (truncated stdout)
* play kube selinux label test case
* Gating tests: diff test: workaround for RHEL8 failure
* [NO TESTS NEEDED] style: indendation
* [NO TESTS NEEDED] fixup: remove debug code
* Report StatusConflict on Pod opt partial failures
* Honor network options for macvlan networks
* Make slirp MTU configurable (network_cmd_options)
* [NO TESTS NEEDED] Generated files
* [NO TESTS NEEDED] Improve generator
* play kube selinux label issue
* Makefile: refactor ginkgo * ginkgo-remote
* Allow pods to use --net=none
* Bump github.com/onsi/ginkgo from 1.14.2 to 1.15.0
* Update release notes for v3.0.0
* New 'make completions' target
* add macvlan as a supported network driver
* Fix podman generate systemd --new special char handling
* Bump github.com/rootless-containers/rootlesskit from 0.12.0 to 0.13.0
* Endpoint that lists containers does not return correct Status value
* Fix --network parsing for podman pod create
* list volumes before pruning
* Docker ignores mount flags that begin with constency
* podman generate kube ignores --network=host
* Switch podman stop/kill/wait handlers to use abi
* [CI:DOCS]build instructions for macOS
* Vendor in containers/buildah v1.19.3
* Honor custom DNS in play|generate kube
* Podman-remote push can support --format
* Bump github.com/containers/image/v5 from 5.10.0 to 5.10.1
* Cirrus: Build static podman-remote
* podman build --pull: refine help message and docs
* Revert "podman build --pull: use correct policy"
* Bump github.com/containers/image/v5 from 5.9.0 to 5.10.0
* Cleanup bindings for image pull
* Don't fail if one of the cgroups is not setup
* Add support for rootless network-aliases
* Allow static ip and mac with rootless cni network
* podman build --pull: use correct policy
* Cirrus: Fix running Validate task on branches
* Fix static build cache by using cachix
* Switch podman image push handlers to use abi
* e2e tests: synchronize test results
* podman-remote ps --external --pod --sort do not work.
* Fix podman history --no-trunc for the CREATED BY field
* remote exec: write conmon error on hijacked connection
* Fix #9100 Change console mode message to debug
* Add default net info in container inspect
* Ensure the Volumes field in Compat Create is honored
* [CI:DOCS]update state of restful service
* workdir presence checks
* libpod: add (*Container).ResolvePath()
* Fixup search
* Pass DefaultMountsFile to podman build
* Ensure shutdown handler access is syncronized
* System tests: cover gaps from the last month
* Fix --arch and --os flags to work correctly
* Bump github.com/google/uuid from 1.1.5 to 1.2.0
* Fix typo
* disable dnsname when --internal
* swagger.go: Fix compilation error
* Fix fish completion issue if the command is prefixed with a space
* Bump golang.org/x/crypto
* networking: lookup child IP in networks
* Small API test improvement for compatibility search endpoint
* podman manifest exists
* Accept and ignore 'null' as value for X-Registry-Auth
* Turn on some remote test
* Add a notice to remove pod before starting service
* libpod: move slirp magic IPs to consts
* rootlessport: set source IP to slirp4netns device
* vendor: update rootlesskit to v0.12.0
* api: fix import image swagger definition
* podman volume exists
* Cirrus: Upload swagger YAML in every context
* [CI:DOCS] Cirrus: Skip smoke task on branch-push
* Move the cni lock file into the cni config dir
* Use random network names in the e2e tests
* [CI:DOCS] Update project name in Code of Conduct
* Set log driver for compatability containers
* Make generate systemd --new robust against double curly braces
* Fix man page for fuse-overlayfs config in rootless mode
* Cirrus: add bindings checks
* Fix handling of container remove
* make bindings generation explicit
* make bindings generation more robuts
* Revert "ginkgo: install on demand via `go get -u`"
* [CI:DOCS] fix go-md2man HTMLSpan warnings
* CI: smoke test: insist on adding tests on PRs
* podman network exists
* ginkgo: install on demand via `go get -u`
* runner.sh : deal with bash 'set -e'
* Add binding options for container|pod exists
* [CI:DOCS]Do not run compose tests with CI:DOCS
* simplify bindings generation
* make: generate bindings: use vendor
* hack/install_golangci.sh: smarter install
* golangci-lint: install to ./bin
* Create release notes for V3.0.0
* Rename AutocompletePortCommand func
* Allow podman push to push manifest lists
* [CI:DOCS]Add README.md for golang bindings
* Turn on podman pod stats test for rootless cgroup v2
* Fix missing podman-container-rename man page link
* Container rename bindings
* Bump to containers/buildah 1.9.2
* Bump github.com/google/uuid from 1.1.4 to 1.1.5
* specgen: improve heuristic for /sys bind mount
* Initial implementation of renaming containers
* Add tests for volume plugins
* Initial implementation of volume plugins
* [CI:DOCS] Add hook-script example to get_ci_vm.sh
* Makefile: add target to generate bindings
* container stop: release lock before calling the runtime
* Bump github.com/cri-o/ocicni to latest master
* Cirrus: Upd. ext. service check host list
* Bump k8s.io/apimachinery from 0.20.1 to 0.20.2
* Bump github.com/stretchr/testify from 1.6.1 to 1.7.0
* Cirrus: Utilize $GOPATH cache for alt_build task
* Add more information and examples on podman and pipes
* Vendor in common 0.33.1
* CI: fix broken diagnostic message for -dev check
* test: use stringid.GenerateNonCryptoID() in more tests
* network: disallow CNI networks with user namespaces
* Reduce general binding binary size
* play kube: set entrypoint when interpreting Command
* Fxes /etc/hosts duplicated every time after container restarted in a pod
* Add 'MemUsageBytes' format option
* Remove the ability to use [name:tag] in podman load command
* More /var/run -> /run
* More /var/run -> /run
* Exorcise Driver code from libpod/define
* Fix problems reported by staticcheck
* Expose security attribute errors with their own messages
* oci: use /proc/self/fd/FD to open unix socket
* Use HTTPProxy settings from containers.conf
* Cirrus: Add cross-compile test for alternative arches
* image list: ignore bare manifest list
* Ensure that `podman play kube` actually reports errors
* Bump github.com/containers/storage from 1.24.4 to 1.24.5
* oci: keep LC_ env variables to conmon
* Better test and idomatic code.
* add pre checkpoint
* podman build --force-rm defaults to true in code
* Adding json formatting to `--list-tags` option in `podman search` command.
* Use abi PodPs implementation for libpod/pods/json endpoint
* Add Networks format placeholder to podman ps and pod ps
* Add network filter for podman ps and pod ps
* Improve error message when the the podman service is not enabled
* Restore compatible API for prune endpoints
* Cirrus: Skip most tests on tag-push
* Add mips architecture to the cross build target
* Fix build for mips architecture follow-up
* Handle podman exec capabilities correctly
* Containers should not get inheritable caps by default
* Make podman generate systemd --new flag parsing more robust
* Switch references of /var/run -> /run
* rootless: automatically split userns ranges
* rootless: add function to retrieve uid mappings
* rootless: add function to retrieve gid mappings
* test: Add checkpoint/restore with volumes
* Include named volumes in container migration
* Use Options as CRImportCheckpoint() argument
* Use Options as exportCheckpoint() argument
* Fix podman logs read partial log lines
* Revert e6fbc15f26b2a609936dfc11732037c70ee14cba
* Cirrus: Update Fedora & Ubuntu images
* Ensure that user-specified HOSTNAME is honored
* generate systemd: do not set `KillMode`
* Bump github.com/google/uuid from 1.1.3 to 1.1.4
* vendor containers/psgo@v1.5.2
* Add default sysctls for pod infra containers
* Ensure we do not edit container config in Exec
* close journald when reading
* libpod API: pull: fix channel race
* Allow image errors to bubble up from lower level functions.
* test: fix variable name
* systemd: make rundir always accessible
* podman-remote fix sending tar content
* fix: disable seccomp by default when privileged.
* Compat api containers/json add support for filters
* Bump github.com/google/uuid from 1.1.2 to 1.1.3
* Expose Height/Width fields to decoder
* Rework pruning to report reclaimed space
* Add support for Gentoo file to package query
* The slirp4netns sandbox requires pivot_root
* Update nix pin with `make nixpkgs`
* readme: Remove broken link
* Fix e2e test for `podman build --logfile`
* test: fix variables name
* exec: honor --privileged
* libpod: change function to accept ExecOptions
* Consolidate filter logic to pkg subdirectory
* sort api endpoints in documentation
* libpod: handle single user mapped as root
* Refactor kube.ToSpecGen parameters to struct
* re-open container log files
* Set NetNS mode instead of value
* add --cidfile to container kill
* Document uid/gidmap are based on subuid/gid mapping
* Bump github.com/containers/storage from 1.24.3 to 1.24.4
* Fix podman build --logfile
* Fix missing options in volumes display while setting uid and gid
* Spelling
* play kube: fix args/command handling
* Pass down EnableKeyring from containers.conf to conmon
* Prefer read/write images over read/only images
* add pod filter for ps
* Add Security information to podman info
* Add volume filters to system prune
* podman v3 container bindings
* Fix build for mips architecture
* Bump k8s.io/apimachinery from 0.20.0 to 0.20.1
* Update nix pin with `make nixpkgs`
* Document location of backend events file
* Fix support for rpmbuild < 4.12.0.
* system tests: set PODMAN_TIMEOUT to 120
* remote copy
* Bump github.com/containers/common from 0.31.0 to 0.31.1
* podman v3 pod bindings
* [CI:DOCS] Bump version on readme
* misc bindings to podman v3
* Docker compat API - /images/search returns wrong structure (#7857)
* Close the stdin/tty when using podman as a restAPI.
* Add support for pacman package version query
* Don't accidently remove XDG_RUNTIME_DIR when reseting storage
* Always add the default gateway to the cni config file
* System tests: better diagnostics in completion test
* Bump github.com/opencontainers/selinux from 1.7.0 to 1.8.0
* podman.service should be an exec service not a notify service
* Fix: unpause not supported for CGv1 rootless
* Disable incompatible rootless + CGroupsV1 tests
* Disable rootless pod stats tests w/ CgroupV1
* Disable CGv1 pod stats on net=host post
* Disable pod stats tests in containerized Fedora w/ CGroupsV1
* Disable blkio.weight test on Ubuntu
* Cirrus: Add support for Ubuntu 20.x
* Add LogSize to container inspect
* Podman image bindings for 3.0
* contrib: drop mirror.chpc.utah.edu:443
* libpod, conmon: change log level for rootless
* Clean up temporary file.
* Allow users to specify TMPDIR in containers.conf
* system tests: the catch-up game
* RHEL gating tests: more journald exceptions
* Add volume prune --filter support
* shell completion for the network flag
* podman events allow future time for --until
* Sign multi-arch images
* add compose test descriptions
* test-compose: rewrite to new subdir form
* add compose regression to ci
* WIP: test docker-compose
* podman: drop checking valid rootless UID
* Cleanup CNI Networks on reboot
* Fix some network compat api problems
* Fix Wrong image tag is used when creating a container from an image with multiple tags
* Handle --rm when starting a container
* Refine public key usage when remote
* podman logs honor stderr correctly
* Bindings refactor
* Ignore containers.conf sysctls when sharing namespaces
* Fix panic in libpod images exists endpoint
* Bump github.com/containernetworking/plugins from 0.8.7 to 0.9.0
* Add --filter to podman system prune
* Fix storage.conf to define driver in the VM
* Bump github.com/containers/storage from 1.24.1 to 1.24.3
* Properly handle --cap-add all when running with a --user flag
* security: honor systempaths=unconfined for ro paths
* Add system test for shell completion
* Bump github.com/onsi/gomega from 1.10.3 to 1.10.4
* Honor the --layers flag
* pkg/copy: introduce a Copier
* Repeat system pruning until there is nothing removed
* Bump k8s.io/apimachinery from 0.19.4 to 0.20.0
* Bump github.com/opencontainers/selinux from 1.6.0 to 1.7.0
* auto updates: document systemd unit and timer
* archive: move stat-header handling into copy package
* Fix spelling mistakes
* pkg/copy: add parsing API
* make podman play use ENVs from image
* Correct port range logic for port generation
* Make `podman stats` slirp check more robust
* Add systempaths=unconfined option
* Bump github.com/containers/image/v5 from 5.8.1 to 5.9.0
* Restore json format for fields as well as whole structs
* Do not pull if image domain is localhost
* pass full NetworkMode to ParseNetworkNamespace
* Fix network ls --filter invalid value flake
* Implement pod-network-reload
* generate kube on multiple containers
* Change name of imageVolumes in container config JSON
* Do not error on installing duplicate shutdown handler
* image sign using per user registries.d
* container cgroup path
* add comment to #8558 regression test
* Docker compat API - containers create ignores the name
* Add APIv2 test for containers-prune
* container create: do not clear image name
* Add saschagrunert and zhangguanzhang to OWNERS
* Bump github.com/containers/common from 0.30.0 to 0.31.0
* update website link for install instructions
* Jira RUN-1106 System handlers updates
* enable short-name aliasing
* Jira RUN-1106 Volumes handlers updates
* Jira RUN-1106 Network handlers updates
* Do not mount sysfs as rootless in more cases
* Add ability to set system wide options for slirp4netns
* Vendor in containers/common v0.30.0
* Clarify uid range requirements
* Close image rawSource when each loop ends
* Use PasswordCallback instead of Password for ssh
* More docker compat API fixes
* rewrite podman-cp
* e2e: bump pull timeout to 240 seconds
* add @Luap99 to OWNERS file
* Support Unix timestamps for `podman logs --since`
* Fix some nit
* Jira RUN-1106 Image handlers updates
* Jira RUN-1106 Container handlers updates
* Add containerenv information to /run/.containerenv
* Correct which network commands can be run as rootless
* Drop default log-level from error to warn
* podman, exec: move conmon to the correct cgroup
* Support --network=default as if it was private
* Change bindings to stop two API calls for ping
* hack/podman-socat captures the API stream
* BATS: add new load test
* Add mask and unmask option to --security-opt
* Use Libpod tmpdir for pause path
* Fix `podman images...` missing headers in table templates
* add commas between mount options
* Do not pass name argument to Load API
* target is not tag
* Fix shell completion for ps --filter ancestor
* Add support for network ids
* Validate that the bridge option is supported
* Add integration test for the bridge options
* Add podman network create option for bridge vlan
* Add podman network create option for bridge mtu
* Do not use "true" after "syslog" in exit commands
* Fix typo in tests
* Fix potential race condition in testing
* compat create should use bindings
* Add API for communicating with Docker volume plugins
* BATS: add ping test
* Document volume mounts of source directories do NOT get created
* Revert the custom cobra vendor
* Bump version in README to v2.2.0
* network connect disconnect on non-running containers
* Bump master to v3.0.0-dev
* Update release notes for v2.2.0
* Fix extra quotation mark in manpages.
* Fix option names --subuidname and --subgidname
* Do not ignore infra command from config files
* Revert "Allow multiple --network flags for podman run/create"
* Add APIv2 tests for kube generate
* Document docker transport is the only supported remote transport
* podman network label support
* runtime: set XDG_* env variables if missing
* Add support for persistent volume claims in kube files
* Prepare support in kube play for other volume types than hostPath
* Remove varlink support from Podman
* Fix problems with network remove
* Switch from pkg/secrets to pkg/subscriptions
* Do not validate the volume source path in specgen
* Add support for --platform
* REST API v2 - ping - fix typo in header
* REST API v2 - ping - remove newline from response to improve Docker compatibility
* squash
* Not use local image create/add manifest
* [CI:DOCS] fix misleading save/load usage
* [tutorials:mac-win-client] Fix command ensuring sshd is enabled
* Fix custom mac address with a custom cni network
* Bump to v2.2.0-dev
* Handle ps container created field as a time.Time
* test resource cleanup
* more tests
* not forcing unmount
* few more tests
* add test
* add comment
* fix: unmount container without force
* style: wsl
* fix lint
* Implement containers/{id or name}/archive
* Ensure that --net=host/pod/container/none warn with -p
- Changelog for HEAD (2020-11-24):
* Set PATH env in systemd timer.
* Docker compat API fixes
* shell completions: remove usage of ShellCompDirectiveError
* more shell completion improvements
* Fix ip-range for classless subnet masks
* Bump github.com/containers/common from 0.27.0 to 0.29.0
* Add podman container ps command
* clarify ps(1) fallback of `podman top`
* APIv2 - create container sets wrong entrypoint
* Enable remote shell completion without a running endpoint
* Specify what the replace flag replaces in help text
* APIv2 - strip CAP_ prefix from capabilities in json
* Make c.networks() list include the default network
* Allow containers to --restart on-failure with --rm
* REST API v2 - list of images - mandatory Created attribute
* Allow multiple --network flags for podman run/create
* fix container cgroup lookup
* Make podman service log events
* vendor in containers/storage v1.24.1 containers/image v5.8.1
* Document containers.conf settings for remote connections
* Shell completion for podman ps and podman pod ps --filter
* Add alias for podman network rm -> remove
* add network connect|disconnect compat endpoints
* Fix sed regex to update version in version/version.go
* Github-Actions: Send e-mail on Cirrus cron failure
* Align the podman pod ps --filter behavior with podman ps
* podman-remote network rm --force is broken
* Remove build \!remote flags from test
- Changelog for v2.2.0-rc1 (2020-11-18):
* Add release notes for v2.2.0-RC1
* correct numbering typo
* Align the podman ps --filter behavior with docker
* Fix podman pod inspect show wrong MAC string
* Fix example for manifest push
* add network connect|disconnect compat endpoints
* Rename e2e test files to include _test.go suffix
* Client call to /play/kube incorrectly set tlsVerify
* Add an option to control if play kube should start the pod
* Swap out json-iterator for golang default
* Fix missing headers in `network ls`
* [CI:DOCS] fix an apostrophe nit in man page
* remove contrib/gate
* Remove some more excessive wrapping and stuttering
* Cleanup tutorials
* use container cgroups path
* Explain the relation between --pod and --network
* Make sure /etc/hosts populated correctly with networks
* logformatter: highlight timing results
* Bump Buildah to v1.18.0, c/storage to v1.24.0
* Cirrus: Invalidate static cache on VM image update
* Improve the shell completion api
* use lookaside storage for remote tests
* Bump k8s.io/apimachinery from 0.19.3 to 0.19.4
* Wrap missing container errors with container ID
* system tests: various
* Add support for volume ls --filter label=key=value
* Podman-remote build is getting ID twice
* [CI:DOCS] Touch up Podman description in man page menu
* Fix markdown tables on docs.podman.io
* short-name aliasing
* Set podman-auto-update.service Type=oneshot
* test for buildah version in container images.
* Add missing --now in systemctl start command
* Change podman build --pull=true to PullIfMissing
* Fix namespace flag parsing for podman build
* Add podman build --net alias for --network
* Refactor to use DockerClient vs APIClient
* Maintain consistent order of short and long flag names in docs
* Fix issues found with codespell
* Bump github.com/rootless-containers/rootlesskit from 0.11.0 to 0.11.1
* Install the new shell completion logic
* Add shell completion with cobra
* Vendor in some cobra PRs to improve the completion experience.
* Add support for network connect / disconnect to DB
* Ensure we do not double-lock the same volume in create
* Cleanup error reporting
* Cirrus: update VMs
* [CI:DOCS] Restore man page cross-checker
* Cirrus: Run validation tests in CI:DOCS mode