-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2040 lines (1997 loc) · 90.3 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 v1.1.2 (2019-03-04)
* Fix #2521
* Update release notes for v1.1.2
* Change timestamp format for podman logs
* Don't extract tar file in podman cp
* runtime: fill a proper default tmpdir when --config is used
* Add additional defense against 0-length log segfaults
* When logging with timestamps, append only until newline
* Ensure that each log line is newline-terminated
* A few more usage-message tweaks
* Add missing short flag -l for run/create
* Fix aliased commands to actually work
* Support podman-remote stop container(s)
* Add tests to make sure podman container and podman image commands work
* Bump gitvalidation epoch
* Bump to v1.2.0-dev
- Changelog for v1.1.1 (2019-03-01)
* Update release notes for v1.1.1
* Pull image for runlabel if not local
* Fix SystemExec completion race
* Fix link inconsistencies in man pages
* Verify that used OCI runtime supports checkpoint
* Should be defaulting to pull not pull-always
* podman-commands script: refactor
* Move Alias lines to descriptions of commands
* Fix usage messages for podman image list, rm
* Fix -s to --storage-driver in baseline test
* No podman container ps command exists
* Allow Exec API user to override streams
* fix up a number of misplace commands
* rootless, new[ug]idmap: on failure add output
* [ci skip] Critical note about merge bot
* podman port fix output
* Fix ignored --time argument to podman restart
* secrets: fix fips-mode with user namespaces
* Fix four errors tagged by Cobra macro debugging
* Clean up man pages to match commands
* Add debugging for errors to Cobra compatibility macros
* Command-line input validation: reject unused args
* Fix ignored --stop-timeout flag to 'podman create'
* fixup! Incorporate review feedback
* fixup! missed some more:
* fixup! Correction to 'checkpoint'
* Followup to #2456: update examples, add trust
* podman create: disable interspersed opts
* fix up a number of misplace commands
* Add a task to Cirrus gating to build w/o Varlink
* Skip checkpoint/restore tests on Fedora for now
* Fix build for non-Varlink-tagged Podman
* Remove restore as podman subcommand
* Better usage synopses for subcommands
* Bump gitvalidation epoch
* Bump to v1.2.0-dev
* Centralize setting default volume path
* Ensure volume path is set appropriately by default
* Move all storage configuration defaults into libpod
* rename pod when we have a name collision with a container
* podman remote-client readme
- Changelog for v1.1.0 (2019-02-26)
* Vendor in latest buildah 1.7.1
* volume: do not create a volume if there is a bind
* Only remove image volumes when removing containers
* Fix podman logs -l
* start pod containers recursively
* Update release notes for v1.1.0
* vendor containers/image v1.5
* Record when volume path is explicitly set in config
* Add debug information when overriding paths with the DB
* Add path for named volumes to `podman info`
* Add volume path to default libpod.conf (and manpage)
* Validate VolumePath against DB configuration
* When location of c/storage root changes, set VolumePath
* docs: cross-reference `podman-{generate,play}-kube`
* README: refine "Out of scope" section
* oci: improve error message when the OCI runtime is not found
* Label CRIU log files correctly
* Add num_locks to the default libpod config
* podman-remote pod pause|unpause|restart
* podman: fix ro bind mounts if no* opts are on the source
* Change exit code to 1 on podman rmi nosuch image
* README.md: rephrase Buildah description
* README: update "out of scope" section
* Change exit code to 1 on podman rm nosuch container
* podman-remote create|ps
* remove duplicate commands in main
* issue template: run `podman info --debug`
* Fix play to show up in podman help
* Switch defaults for podman build versus buildah
* In shared networkNS /etc/resolv.conf&/etc/hosts should be shared
* Allow dns settings with --net=host
* Fix up handling of user defined network namespaces
* Enable more podman-remote pod commands
* tests, rootless: use relative path for export test
* rootless: force same cwd when re-execing
* Vendor Buildah v1.7
* Exit with errors not just logging error
* cmd: support rootless mode for cp command
* hide --latest on the remote-client
* Improve command line validation
* make remote-client error messaging more robust
* podman: --runtime has higher priority on runtime_path
* podman-remote pod inspect|exists
* Cirrus: Install Go 1.11 on Ubuntu VMs
* Cirrus: Add 20m extra timeout for Ubuntu
* Introduce how to start to hack on libpod.
* update: remove duplicate newline
* Fix typo in comment
* podman-remote load image
* Do not make renumber shut down the runtime
* Add podman system renumber command
* Add ability to get a runtime that renumbers
* Recreate SHM locks when renumbering on count mismatch
* Move RenumberLocks into runtime init
* Remove locks from volumes
* Expand renumber to also renumber pod locks
* Add ability to rewrite pod configs in the database
* Add initial version of renumber backend
* Add a function for overwriting container config
* enable podman-remote pod rm
* vendor containers/image v1.4
* Adjust LISTEN_PID for reexec in varlink mode
* Update c/storage vendor to v1.10 release
* add newline to images output
* podman-remote save [image]
* hack/tree_status.sh: preserve new lines
* remove duplicate kill from `podman --help`
* iopodman.SearchImages: add ImageSearchFilter to Varlink API
* image.SearchImages: use SearchFilter type
* SearchImages: extend API with filter parameter
* podman-search: refactor code to libpod/image/search.go
* podman-search: run in parallel
* Ensure that userns is created for stopped rootless pods
* Podman pod create now errors on receiving CLI args
* podman-remote pull
* Don't start running dependencies
* Fifth chunk of Cobra Examples
* Add 4th chunk of Cobra Examples
* OpenTracing support added to start, stop, run, create, pull, and ps
* packer: Make Makefile host arch sensitive
* Add 3rd chunk of Cobra examples
* pod infra container is started before a container in a pod is run, started, or attached.
* Add registry name to fields returned by varlink image search
* Second chunk of Cobra help
* podman: honor --storage-opt again
* docs: mention the new OCI runtime configuration
* libpod: honor runtime_path from libpod.conf
* rootless: open the correct file
* Fix `podman login` lying problem
* Fix error code retrieval for podman start --attach
* Enable --rm with --detach
* Add examples for Cobra
* Add tlsVerify bool to SearchImage for varlink
* Fix volume handling in podman
* enable podman-remote volume prune
* add build to main and as subcommand to image
* --password-stdin flag in `podman login`
* 'podman cp' copy between host and container
* podman-remote build
* Vendor in latest c/storage and c/image
* show container ports of network namespace
* podman-remote volume inspect|ls
* build varlink without GOPATH
* completions: add --pod to run/create
* Parse fq name correctly for images
* Try disabling --rm on notify_socket test
* podman-remote push
* get_ci_vm : allow running without sudo
* Only build varlink when buildtag is available
* Remove a lot of '--rm' options from unit tests
* Address review comments on #2319
* Retain a copy of container exit file on cleanup
* Fix manual detach from containers to not wait for exit
* varlink: Rename `SearchImage` to `SearchImages`
* varlink: Rename `ContainerInList` to `Container`
* varlink: Rename `ImageInList` to `Image`
* varlink: Simplify GetVersion() call
* varlink: Return all times in RFC 3339 format
* Makefile: Don't include quotes around GIT_COMMIT
* varlink: Remove the Ping() method
* podman: Show error when creating varlink listener failed
* varlink: Remove `NotImplemented` type
* Don't show global flags except for podman command
* podman-remote volume rm
* Remove urfave/cli from libpod
* podman-remote volume create
* Separate remote and local commands
* lock and sync container before checking mountpoint
* oci: do not set XDG_RUNTIME_DIR twice
* pod: drop not valid check for rootless
* Podman pod stats -- fix GO template output
* Add troubleshooting information about running a rootless containers.
* Add --all-tags to pull command
* Add common_test.go to single test instructions
* Remove container from storage on --force
* do not crash when displaying dangling images
* Add volume mounts to PS output
* Update image-trust man with further comments
* Migrate to cobra CLI
* Remove some dead type declarations
* Fix down/missing registry.access.redhat.com
* cleanup: use the correct runtime
* make vendor: always check for latest vndr
* install.md: add section about vendoring
* Add varlink generate to the make documentation
* Mention OSes that pass the build
* Generate make helping message dynamicaly.
* Makefile: minor fix to reenable system tests
* Add StartPeriod to cmd/podman/docker.HealthConfig
* Unconditionally refresh storage options from config
* rootless: do not override /dev/pts if not needed
* Fix handling of memory limits via varlink
* Add documentation on running systemd on SELinux systems
* Cirrus: add vendor_check_task
* cleanup vendor directory
* Revert "Vendor containers/buildah"
* e2e tests: sigproxy: fix rare hang condition
* Preserve exited state across reboot
* Apply 50min timeout to integration tests
* Capatilize all usage and descriptions
* Add podman system prune and info commands
* podman-remote import|export
* tests: allow to override the OCI runtime
* rootless: copy some settings from the global configuration
* Vendor containers/buildah
* Increase e2e info/json test exit timeout
* Touch up image-trust man
* Rework Podman description
* vendor latest containers/image
* Reduce Dockerfile based build time for libpod.
* libpod/image: Use RepoDigests() in Inspect()
* add Pod Manager References
* Add support for short option -f in podman version
* Add support for short option -s in podman inspect
* Add support for short option -f
* Changes to container runlabel for toolbox project
* Fix regression in ps with custom format
* Set SELinux type on bin/podman after install
* Cirrus: Add RHEL-7 testing
* For consistency in usage output the verbs changed from 3rd person to 1st person.
* podman image prune -- implement all flag
* Alter varlink API for ListContainerMounts to return a map
* Make --quiet work in podman create/run
* apparmor: don't load default profile in rootless mode
* Cirrus: Enable AppArmor build and test
* Update ArchLinux installation instructions
* tutorials: describe how to use podman in updates-testing
* [skip ci] Cirrus: Container for tracking image use
* Cirrus: Use freshly built images
* remove sudo
* Vendor in latest containers/storage
* Show a better error message when podman info fails during a refresh
* enable podman-remote version
* Update transfer.md and commands.md to add missing commands.
* rootless: support port redirection from the host
* Mask unimplemeted commands for remote client
* Vendor in latest opencontainers/selinux
* podman-remote inspect
* Vendor in latest containers/storage
* rootless: fix --pid=host without --privileged
* Do not unmarshal into c.config.Spec
* podman-inspect: don't ignore errors
* Add openSUSE Kubic to install.md
* cirrus: Record start/end time of important things
* Cirrus: Consolidate VM image names in once place
* Update README for v1.0.0
* Installing podman
* Ensure that wait exits on state transition
* Vendor in containers/storage
* Add --latest and --all to podman mount/umount
* Cleanup coverity scan issues
* Embed runtime struct in super localRuntime
* Collaberative podman-remote container exists
* Fix up `image sign` in PR 2108
* add support for podman-remote history
* Rename localRuntime to runtime in cmd/podman
* podman remote integrations tests
* podman remote client -- add rmi
* Run integrations test with remote-client
* [skip ci] Hack: Fix get_ci_vm.sh w/ gcloud ssh/scp
* Update master branch with v1.0 changes from 1.0 branch
* Add local storage.conf example to troubleshoot
* config: store the runtime used to create each container
* oci: allow to define multiple OCI runtimes
* libpod: allow multiple oci runtimes
* Remove imageParts.{isTagged,registry,name,tag}
* Clarify comments about isRegistry a bit.
* Use imageParts.unnormalizedRef in GetImageBaseName
* FIXME? Introduce imageParts.suspiciousRefNameTagValuesForSearch
* Use imageParts.referenceWithRegistry in Image.getLocalImage
* Don't try to look up local images with an explicit :latest suffix
* Return a reference.Named from normalizedTag
* Use reference.TagNameOnly instead of manually adding imageParts.tag in normalizeTag
* Use imageParts.normalizedReference in normalizeTag
* Add imageParts.normalizedReference()
* Use imageparts.referenceWithRegistry in normalizeTag
* Remove no longer used imageParts.assemble()
* Use getPullRefPair / getSinglePullRefPairGoal in pullGoalFromPossiblyUnqualifiedName
* Use imageParts.referenceWithRegistry in pullGoalFromPossiblyUnqualifiedName
* Use imageParts.referenceWithRegistry in getPullRefPair
* Add imageParts.referenceWithRegistry
* Don't use imageParts.assemble when pulling from a qualified name
* Reorganize normalizeTag
* Simplify pullGoalFromPossiblyUnqualifiedName
* Remove imageParts.transport
* Simplify pullGoalFromPossiblyUnqualifiedName
* Inline imageParts.assembleWithTransport into callers
* Record the original reference.Named in imageParts
* Drop image.DecomposeString, make image.Parts private imageParts again
* Don't call image.DecomposeString in imageInListToContainerImage
* Add bridge support, for the varlink connection
* Add troubleshooting statement for homedirs mounted noexec
* Set default storage options from mounts.conf file.
* podman play kube: add containers to pod
* Add darwin support for remote-client
* vendor: update everything
* vendor make target
* rootless: create the userns immediately when creating a new pod
* rootless: join both userns and mount namespace with --pod
* spec: add nosuid,noexec,nodev to ro bind mount
* Use multi-arch images in test case scripts
* Add varlink support for prune
* Replace tab with spaces in MarshalIndent in libpod
* Remove one more usage of encoding/json in libpod
* Update vendor.conf for jsoniter vendor changes
* Move all libpod/ JSON references over to jsoniter
* Update json-iterator vendor to v1.1.5
* Remove easyjson in preparation for switch to jsoniter
* remote-client support for images
* Move python code from contrib to it's own repo python-podman
* Use defaults if paths are not specified in storage.conf
* (Minor) Cirrus: Print timestamp at start
* fix up sigstore path
* Trivial readme updates
* podman: bump RLIMIT_NOFILE also without CAP_SYS_RESOURCE
* Fix handling of nil volumes
* sign: make all error messages lowercase
* sign: use filepath.Join instead of fmt.Sprintf
* createconfig: always cleanup a rootless container
* Fix 'image trust' from PR1899
* libpod/image: Use ParseNormalizedNamed in RepoDigests
* apparmor: apply default profile at container initialization
* Fix up image sign and trust
* If you fail to open shm lock then attempt to create it
* List the long variant of each option before its shorter counterpart
* Use existing interface to request IP address during restore
* Added checkpoint/restore test for same IP
* Enable checkpoint test with established TCP connections
* .github/ISSUE_TEMPLATE: Suggest '/kind bug' and '/kind feature'
* pkg/hooks/exec: Include failed command in hook errors
* hooks/exec/runtimeconfigfilter: Log config changes
* hooks: Add pre-create hooks for runtime-config manipulation
* Add Validate completions
* Add a --workdir option to 'podman exec'
* Default --sig-proxy to true for 'podman start --attach'
* Test that 'podman start --sig-proxy' does not work without --attach
* [WIP]Support podman image sign
* vendor latest buildah
* Honor image environment variables with exec
* Minor: Remove redundant basename command in ooe.sh
* Rename libpod.Config back to ContainerConfig
* Add ability to build golang remote client
* vendor latest buildah
* Add the configuration file used to setup storage to podman info
* Address lingering review comments from SHM locking PR
* podman: set umask to 022
* podman-login: adhere to user input
* Vendor in latest containers/buildah code
* Rootless with shmlocks was not working.
* Readd Python testing
* Update vendor of runc
* [skip ci] Docs: Add Bot Interactions section
* container runlabel NAME implementation
* Bump time for build_each_commit step
* Move lock init after tmp dir is populated properly
* DO NOT MERGE temporarily remove python tests
* When refreshing libpod, if SHM locks exist, remove them
* Ensure different error messages and creating/opening locks
* Update unit tests to use in-memory lock manager
* Remove runtime lockDir and add in-memory lock manager
* Convert pods to SHM locks
* Convert containers to SHM locking
* Add lock manager to libpod runtime
* Move to POSIX mutexes for SHM locks
* Disable lint on SHMLock struct
* Refactor locks package to build on non-Linux
* Add an SHM-backed Lock Manager implementation
* Add interface for libpod multiprocess locks
* Improve documentation and unit tests for SHM locks
* Propogate error codes from SHM lock creation and open
* Add mutex invariant to SHM semaphores.
* Initial skeleton of in-memory locks
* add container-init support
* If local storage file exists, then use it rather then defaults.
* vendor in new containers/storage
* Fix completions
* Touch up some troubleshooting nits
* Warn on overriding user-specified storage driver w/ DB
* Log container command before starting the container
* Use sprintf to generate port numbers while committing
* Add troubleshooting for sparse files
* Fix handling of symbolic links
* podman build is not using the default oci-runtime
* Re-enable checkpoint/restore CI tests on Fedora
* Fixes to handle /dev/shm correctly.
* rootless tests using stop is more reliable
* Allow alias for list, ls, ps to work
* Refactor: use idtools.ParseIDMap instead of bundling own version
* cirrus: Use updated images including new crui
* Switch all referencs to image.ContainerConfig to image.Config
* Allow users to specify a directory for additonal devices
* Change all 'can not' to 'cannot' for proper usage
* Invalid index for array
* Vendor in latest psgo code to fix race conditions
* test: add test for rootless export
* export: fix usage with rootless containers
* rootless: add function to join user and mount namespace
* libpod: always store the conmon pid file
* Use existing CRIU packages in CI setup
* skip test for blkio.weight when kernel does not support it
* Add Play
* Cirrus: Skip build all commits test on master
* prepare for move to validate on 1.11 only
* [skip ci] Gate: Update docs w/ safer local command
* Support podman image trust command
* Makefile: validate that each commit can at least build
* perf test a stress test to profile CPU load of podman
* all flakes must die
* Add information on --restart
* generate service object inline
* Cirrus: One IRC notice only
* docs/tutorials: add a basic network config
* display proper error when rmi -fa with infra containers
* add --get-login command to podman-login.
* Show image only once with images -q
* Add script to create CI VMs for debugging
* Cirrus: Migrate PAPR testing of F28 to Cirrus
* Skip checkpoint tests on Fedora <30
* Cirrus: Add text editors to cache-images
* Bump gitvalidation epoch
* Bump to v0.12.2-dev
* Clean up some existing varlink endpoints
* mount: allow mount only when using vfs
- Changelog for v1.0.0 (2018-1-11)
* Update release notes for v1.0
* Remove clientintegration from Makefile
* Regenerate EasyJSON to fix JSON issues
* Update gitvalidation to avoid reverts w/o signoffs
* Cirrus: Post-Merge Testing for v1.0 Branch
* Move python code from contrib to it's own repo python-podman
* Use defaults if paths are not specified in storage.conf
* (Minor) Cirrus: Print timestamp at start
* fix up sigstore path
* Trivial readme updates
* podman: bump RLIMIT_NOFILE also without CAP_SYS_RESOURCE
* Fix handling of nil volumes
* sign: make all error messages lowercase
* sign: use filepath.Join instead of fmt.Sprintf
* createconfig: always cleanup a rootless container
* Fix 'image trust' from PR1899
* libpod/image: Use ParseNormalizedNamed in RepoDigests
* apparmor: apply default profile at container initialization
* Fix up image sign and trust
* List the long variant of each option before its shorter counterpart
* Use existing interface to request IP address during restore
* Added checkpoint/restore test for same IP
* Enable checkpoint test with established TCP connections
* .github/ISSUE_TEMPLATE: Suggest '/kind bug' and '/kind feature'
* pkg/hooks/exec: Include failed command in hook errors
* hooks/exec/runtimeconfigfilter: Log config changes
* hooks: Add pre-create hooks for runtime-config manipulation
* Add Validate completions
* Add a --workdir option to 'podman exec'
* Default --sig-proxy to true for 'podman start --attach'
* Test that 'podman start --sig-proxy' does not work without --attach
* [WIP]Support podman image sign
* vendor latest buildah
* Honor image environment variables with exec
* Minor: Remove redundant basename command in ooe.sh
* Rename libpod.Config back to ContainerConfig
* Add ability to build golang remote client
* vendor latest buildah
* Add the configuration file used to setup storage to podman info
* podman: set umask to 022
* podman-login: adhere to user input
* Vendor in latest containers/buildah code
* Readd Python testing
* Update vendor of runc
* [skip ci] Docs: Add Bot Interactions section
* container runlabel NAME implementation
* Bump time for build_each_commit step
* add container-init support
* If local storage file exists, then use it rather then defaults.
* vendor in new containers/storage
* Fix completions
* Touch up some troubleshooting nits
* Log container command before starting the container
* Use sprintf to generate port numbers while committing
* Add troubleshooting for sparse files
* Fix handling of symbolic links
* podman build is not using the default oci-runtime
* Re-enable checkpoint/restore CI tests on Fedora
* Fixes to handle /dev/shm correctly.
* rootless tests using stop is more reliable
* Allow alias for list, ls, ps to work
* Refactor: use idtools.ParseIDMap instead of bundling own version
* cirrus: Use updated images including new crui
* Switch all referencs to image.ContainerConfig to image.Config
* Allow users to specify a directory for additonal devices
* Change all 'can not' to 'cannot' for proper usage
* Invalid index for array
* Vendor in latest psgo code to fix race conditions
* test: add test for rootless export
* export: fix usage with rootless containers
* rootless: add function to join user and mount namespace
* libpod: always store the conmon pid file
* Use existing CRIU packages in CI setup
* skip test for blkio.weight when kernel does not support it
* Add Play
* Cirrus: Skip build all commits test on master
* prepare for move to validate on 1.11 only
* [skip ci] Gate: Update docs w/ safer local command
* Support podman image trust command
* Makefile: validate that each commit can at least build
* perf test a stress test to profile CPU load of podman
* all flakes must die
* Add information on --restart
* generate service object inline
* Cirrus: One IRC notice only
* docs/tutorials: add a basic network config
* display proper error when rmi -fa with infra containers
* add --get-login command to podman-login.
* Show image only once with images -q
* Add script to create CI VMs for debugging
* Cirrus: Migrate PAPR testing of F28 to Cirrus
* Skip checkpoint tests on Fedora <30
* Cirrus: Add text editors to cache-images
* Clean up some existing varlink endpoints
* mount: allow mount only when using vfs
- Changelog for v0.12.1.2 (2018-12-13)
* Add release notes for 0.12.1.2
* runlabel should sub podman for docker|/usr/bin/docker
* condition fixed for adding volume to boltdb.
* e2e: add tests for systemd
* Add test for sharing resolv and hosts with netns
* Makefile tweaks to fix make shell
* failed containers with --rm should remove themselves
* Fix documentation links and flow
* Set Socket label for contianer
* Containers sharing a netns should share resolv/hosts
* Prevent a second lookup of user for image volumes
* fix typo in kubernetes
* No need to use `-i` in go build (with go 1.10 and above)
* rootless: fix restart when using fuse-overlayfs
* Cirrus: Update base-image build docs
* Add capabilities to generate kube
* disable F29 tests on PAPR
* Ensure storage options are properly initialized
* add more example usage to varlink endpoints
* Update for API change
* Vendor buildah after merging mtrmac/blob-info-caching-on-top-of-contents-caching
* Vendor c/image after merging c/image#536
* Bump gitvalidation epoch
* Bump to v0.12.2-dev
- Changelog for v0.12.1.1 (2018-12-07)
* Update release notes for v0.12.1.1
* Fix errors where OCI hooks directory does not exist
* add timeout to pod stop
* Remove manual handling of insecure registries in (podman search)
* Fix reporting the registries.conf path on error
* Remove manual handling of insecure registries in doPullImage
* Remove the forceSecure parameter on the pull call stack
* Remove manual handling of insecure registries in PushImageToReference
* Factor out the registries.conf location code in pkg/registries
* Remove the forceSecure parameter of Image.PushImageTo*
* Minimally update for the DockerInsecureSkipTLSVerify type change
* Bump gitvalidation epoch
* Bump to v0.12.2-dev
* Fix build on non-Linux
* Remove some unused data structures and code
* Vendor buildah after merging https://github.com/containers/buildah/pull/1214
* Update containers/image to 63a1cbdc5e6537056695cf0d627c0a33b334df53
* Cirrus: Document and codify base-image production
* Cirrus: Use Makefile for image-building
* Refactor BooleanAction to mimic golang interface
* generate kube
- Changelog for v0.12.1 (2018-12-06)
* Update release notes for 0.12.1
* bind mount /etc/resolv.conf|hosts in pods
* Remove --sync flag from `podman rm`
* Add locking to Sync() on containers
* Add --sync flag to podman ps
* Add --sync option to podman rm
* Tests for podman volume commands
* Add "podman volume" command
* tutorial: add ostree dependency
* Pick registry to login from full image name as well
* Add ability to prune containers and images
* Invert tlsverify default in API
* set .54 version for f28 due to memory error
* Vendor in latest containers/storage
* pkg/lookup: Return ID-only pointers on ErrNo*Entries
* test for rmi with children
* libpod/container_internal_linux: Allow gids that aren't in the group file
* Don't initialize CNI when running as rootless
* correct algorithm for deleting all images
* Use runtime lockDir in BoltDB state
* test: update runc again
* vendor: update containers/storage
* create pod on the fly
* libpod/container_internal: Deprecate implicit hook directories
* Revert changes to GetDefaultStoreOptions
* Fix libpod static dir selection when graphroot changed
* podman pod exists
* Adding more varlink endpoints
* Ensure directory where we will make database exists
* Fix typo
* rootless: raise error if newuidmap/newgidmap are not installed
* Add better descriptions for validation errors in DB
* Fix gofmt and lint
* Make locks dir in unit tests
* Do not initialize locks dir in BoltDB
* Move rootless storage config into libpod
* Set default paths from DB if not explicitly overridden
* Add a struct indicating if some Runtime fields were set
* Make DB config validation an explicit step
* Move DB configuration up in runtime setup
* Add ability to retrieve runtime configuration from DB
* Add short-option handling to logs
* tests: always install runc on Ubuntu
* cirrus: update ubuntu image
* cirrus: make apt noninteractive
* Dockerfile, .cirrus.yml: update runc commit
* rootless: propagate XDG_RUNTIME_DIR to the OCI runtime
* Update ubuntu VM image w/ newer runc
* add pod short option to ps
* Add create test with --mount flag
* Only include container SizeRootFs when requested
* /dev/shm should be mounted even in rootless mode.
* disable checkpoint tests on f29
* test, rootless: specify USER env variable
* Revert "downgrade runc due a rootless bug"
* Fix completions to work with podman run command
* hide kube command for now
* pypod create/run: ignore args for container command
* Add support for --all in pypodman ps command
* Fixes #1867
* tests: fix NOTIFY_SOCKET test
* Fix golang formatting issues
* oci: propagate NOTIFY_SOCKET on runtime start
* test: fix test for NOTIFY_SOCKET
* Add test to ensure stopping a stopped container works
* Stopping a stopped container is not an error for Podman
* Disable mount options when running --privileged
* Vendor in latest containers/storage
* util: use fsnotify to wait for file
* vendor: update selinux
* rootless: store only subset of storage.conf
* rootless: fix cleanup
* network: allow slirp4netns mode also for root containers
* Added more checkpoint/restore test cases
* Fix podman container restore -a
* Update bash completion for checkpoint/restore
* Add '--tcp-established' to checkpoint/restore man page
* Added tcp-established to checkpoint/restore
* Remove unused CRIU_COMMIT variable
* Point CRIU_COMMIT to CRIU release 3.11
* Updated CRIO_COMMIT to pull in new conmon for CRIU
* Use also a struct to pass options to Restore()
* _split_token(): handle None
* Use host's resolv.conf if no network namespace enabled
* rootless: add new netmode "slirp4netns"
* tests: change return type for PodmanAsUser to PodmanTestIntegration
* test: cleanup CNI network used by the tests
* exec: don't wait for pidfile when the runtime exited
* Remove mount options relatime from podman run --mount with shared
* Update test case name to podman run with --mount flag
* Add some tests for --ip flag with run and create command
* Add history and namespaceoptions to image inspect
* add podman container|image exists
* set root propagation based on volume properties
* Actually set version for podman module / pypodman
* implement --format for version command
* podman_tutorial.md typos: arguement -> argument; missing 'a'
* Load NAT modules to fix tests involving CRIU
* Vendor in latest containers/buildah
* Update checkpoint/restore man pages
* Added option to keep containers running after checkpointing
* Use a struct to pass options to Checkpoint()
* exec: always make explicit the tty value
* Allow users to expose ports from the pod to the host
* Improve speed of containers.list()
* output libpod container to kubernetes yaml
* rootless: create empty mounts.conf if it doesn't exist
* registries: check user registries file only in rootless mode
* rootless: create storage.conf when it doesn't exist
* rootless: create libpod.conf when it doesn't exist
* Don't use $HOST and $USER variables for remote
* Implement pypodman start command
* runlabel: use shlex for splitting commands
* Add a rule to compile system test in Makefile
* Fix no-new-privileges test
* The system test write with ginkgo
* Separate common used test functions and structs to test/utils
* Add version command to pypodman
* Bump gitvalidation epoch
* Bump to v0.11.2-dev
* Cirrus: Add documentation for system-testing
* Cirrus: Simplify optional system-test script
* Cirrus: Reveal magic, parallel system-testing
* libpod should know if the network is disabled
* Lint: Silence few given goconst lint warnings
* Lint: Extract constant unknownPackage
* Lint: Tests: add missing assertions
* Lint: Do not ignore errors from docker run command when selinux enabled
* Lint: InspectImage varlink api should return errors that occurred
* Lint: Exclude autogenerated files from lint test
* Lint: Update metalinter dependency
* Set --force-rm for podman build to true by default
* Vendor in latest containers/storage
- Changelog for v0.11.1.1 (2018-11-15)
* Vendor in containers/storage
* Add release notes for 0.11.1.1
* Increase pidWaitTimeout to 60s
* Cirrus: Add master branch testing status badge
* rootless: call IsRootless just once
* Bump golang to v1.10 in install.md
* Standardized container image for gofmt and lint
* Make list of approvers same as reviewers
* vendor: update ostree-go
* vendor.conf: fix typo
* Cleanup podman spec to not show git checkout is dirty
* Add space between num & unit in images output
* Update troubleshooting guide to deal with rootless path
* troubleshooting.md: add a recipe for rootless ping
* remove $-prefix from (most) shell examples
* docs: Fix duplicated entry for pod-container-unmount
* Better document rootless containers
* info: add rootless field
* Accurately update state if prepare() partially fails
* Do not hide errors when creating container with UserNSRoot
* rm -f now removes a paused container
* correct assignment of networkStatus
* podman_tutorial: cni build path has changed
* Bump gitvalidation epoch
* Bump to v0.11.2-dev
* Cirrus: Ignore any error from the IRC messenger
* rootless: default to fuse-overlayfs when available
- Changelog for v0.11.1 (2018-11-08)
* Update release notes for 0.11.1
* update seccomp.json
* Touch up --log* options and daemons in man pages
* Fix run --hostname test that started failing post-merge
* move defer'd function declaration ahead of prepare error return
* Don't fail if /etc/passwd or /etc/group does not exists
* Print error status code if we fail to parse it
* Properly set Running state when starting containers
* Fix misspelling
* Retrieve container PID from conmon
* If a container ceases to exist in runc, set exit status
* EXPERIMENTAL: Do not call out to runc for sync
* Actually save changes from post-stop sync
* rootless: mount /sys/fs/cgroup/systemd from the host
* rootless: don't bind mount /sys/fs/cgroup/systemd in systemd mode
* Add hostname to /etc/hosts
* Temporarily fix the Python tests to fix some PRs
* Remove conmon cgroup before pod cgroup for cgroupfs
* Fix cleanup for "Pause a bunch of running containers"
* --interactive shall keep STDIN attached even when not explicitly called out
* Do never override podman with docker
* Make kill, pause, and unpause parallel.
* Fix long image name handling
* Make restart parallel and add --all
* Add ChangeAction to parse sub-options from --change
* replace quay.io/baude to quay.io/libpod
* Change humanize to use MB vs MiB.
* allow ppc64le to pass libpod integration tests
* Cirrus-CI: Add option to run system-tests
* Cirrus: Skip rebuilding images unless instructed
* Cirrus: Disable image build job abort on push
* Cirrus: Add a readme
* Ubuntu VM image build: try update twice
* Cirrus: Enable updating F28 image
* rootless: do not add an additional /run to runroot
* rootless: avoid hang on failed slirp4netns
* Fix setting of version information
* runtime: do not allow runroot longer than 50 characters
* attach: fix attach when cuid is too long
* truncate command output in ps by default
* Update the runc commit used for testing
* make various changes to ps output
* Sync default config with libpod.conf
* Use two spaces to pad PS fields
* unmount: fix error logic
* get user and group information using securejoin and runc's user library
* CONTRIBUTING.md: add section about describing changes
* Change to exported name in ParseDevice
* Vendor in latest containers/storage
* fix bug in rm -fa parallel deletes
* Ensure test container in running state
* Add tests for selinux labels
* Add --max-workers and heuristics for parallel operations
* Increase security and performance when looking up groups
* run prepare in parallel
* downgrade runc due a rootless bug
* runlabel: run any command
* Eat our own dogfood
* vendor: update containers/storage
* Add support for /usr/local installation
* create: fix writing cidfile when using rootless
* Explain the device format in man pages
* read conmon output and convert to json in two steps
* Cirrus: Use images w/ buildah fix
* Add --all and --latest to checkpoint/restore
* Use the newly added getAllOrLatestContainers() function
* Use the new checkAllAndLatest() function
* Also factor out getAllOrLatestContainers() function
* Add checkAllAndLatest() function
* Downgrade code to support python3.4
* Allow containers/storage to handle on SELinux labeling
* Use more reliable check for rootless for firewall init
* Vendor in latest containers/storage opencontainers/selinux
* Make podman ps fast
* Support auth file environment variable in podman build
* fix environment variable parsing
* tests: use existing CRIU version check
* Use the CRIU version check in checkpoint/restore
* Add helper function to read out CRIU version
* vendor in go-criu and dependencies
* oci: cleanup process status
* Handle http/https in registry given to login/out
* re-enable f29 testing
* correct stats err with non-running containers
* Use restoreArtifacts to save time in integration tests
* Make rm faster
* Fix man page to show info on storage
* Move rootless directory handling to the libpod/pkg/util directory
* Fix podman port -l
* Fix trivial missing markup in manpage
* Cirrus: Install CRIU in test images
* Cirrus: Use different CNI_COMMIT for Fedora
* Fix Cirrus/Packer VM image building
* Revert "Cirrus: Enable debugging delay on non-zero exit"
* Cirrus: IRC message when cirrus testing successful
* cirrus: Add simple IRC messenger
* fix NOTIFY_SOCKET in e2e testfix NOTIFY_SOCKET in e2e tests
* Bump gitvalidation epoch
* Bump to v0.10.2-dev
- Changelog for v0.10.1.3 (2018-10-17)
* Update release notes for 0.10.1.3
* Vendor in new new buildah/ci
* Fix podman in podman
* Bump gitvalidation epoch
* Bump to v0.10.2-dev
- Changelog for v0.10.1.2 (2018-10-17)
* Update release notes for 0.10.1.2
* Fix CGroup paths used for systemd CGroup mount
* Bump gitvalidation epoch
* Bump to v0.10.2-dev
- Changelog for v0.10.1.1 (2018-10-16)
* Update release notes for 0.10.1.1
* Mount proper cgroup for systemd to manage inside of the container.
* Cirrus: Enable debugging delay on non-zero exit
* Touchup fileo typo
* volume: resolve symlinks in paths
* volume: write the correct ID of the container in error messages
* vendor: update containers/buildah
* papr: relabel GOPATH/github.com/containers/libpod
* tests: do not fail in the cleanup phase
* tests: do not make assumptions on the mount output
* papr_prepare: remove double process for starting up .papr.sh
* Add support for pod commands
* Support auth file environment variable & add change to man pages
* Generate a passwd file for users not in container
* Bump gitvalidation epoch
* Bump to v0.10.2-dev
- Changelog for v0.10.1 (2018-10-11)
* Swap from map to channels for podman stop workers
* Add release notes for 0.10.1
* Pass along syslog variable to podman cleanup processes
* Sort all command flags
* rootless: detect when user namespaces are not enabled
* Log an otherwise ignored error from joining a net ns
* Fix gofmt
* Add tests for --ip flag
* Update manpages for --ip flag
* Add --ip flag and plumbing into libpod
* Document --net as an alias of --network in podman run & create
* Update OCICNI vendor to 2d2983e4
* Temporary commit to swap branches
* rootless: report more error messages from the startup phase
* rootless: fix an hang on older versions of setresuid/setresgid
* Update OCICNI vendor to e617a611
* fix runlabel functions based on QA feedback
* Vendor latest containers/image
* Stop containers in parallel fashion
* wip
* remove hack/dind
* Vendor in latest github.com/containers/storage,image, buildah
* runlabel: execute /proc/self/exe and avoid recursion
* Re-add source-verify in cirrus-ci
* added links to buildah.io and podman.io to README.md
* Lower CPU/Memory usage by cirrus VMs
* skip userns tests on non-fedora distributions for now
* Remove Travis
* docker: Double quote array expansions to avoid re-splitting elements
* Ensure resolv.conf has the right label and path
* Remove no longer used libnetwork from vendor.conf
* Fix lint
* Drop libnetwork vendor and move the code into pkg/
* Update libnetwork vendor to current master to fix CI
* Switch to using libnetwork's resolvconf package
* Add configuration for Cirrus-CI
* disable gce building of images
* re-add BR for golang compiler to contrib/spec/podman.spec.in
* completions: add checkpoint/restore completions
* tests: add checkpoint/restore test
* tutorial: add checkpoint/restore to tutorial
* docs: add checkpoint and restore man pages
* Add support to checkpoint/restore containers
* oci: split the stdout and stderr pipes
* oci: always set XDG_RUNTIME_DIR
* Fix pod status reporting for new Exited state
* Add ability for ubuntu to be tested
* selinux: drop superflous relabel
* rootless: always set XDG_RUNTIME_DIR
* Fix python tests
* Fix Wait() to allow Exited state as well as Stopped
* Fix cleanupRuntime to only save if container is valid
* Fix bug with exited state and container remove
* Address review comments and fix ps output
* Add ContainerStateExited and OCI delete() in cleanup()
* Need to allocate memory for hook struct
* Disable SELinux labeling if --privileged
* * Update documenation
* Implement pod varlink bindings
* Update docs to build a runc that works with systemd
* runtime: fix message which assumes the runtime is runc
* rootless: raise an error when trying to use cgroups
* Add --all flag to podman kill
* Add podman.io to README.md
* Vendor in the latest containers/storage, image and buildah
* Don't tmpcopyup on systemd cgroup
* Add container runlabel command
* run complex image names with short names
* Add buildah version and distribution to info
* Disable Fedora 29 and CentOS7 VM testing
* podman runs disabled containers and privileged containers as spc_t
* Update the OWNERS file so bot assigns sane reviewers
* rework CI tests to test on VMs
* Put openshift dockerfiles in test/install
* Bump gitvalidation epoch
* Bump to v0.9.4-dev
* contrib/python/*/Makefile: Fallback to unversioned 'python'
* Makefile: Drop PYTHON
* Makefile: Call contrib/python's clean regardless of HAS_PYTHON3
- Changelog for v0.9.3.1 (2018-09-25)
* Update release notes for 0.9.3.1
* Disable problematic SELinux code causing runc issues
* Bump gitvalidation epoch
* Bump to v0.9.4-dev
- Changelog for v0.9.3 (2018-09-21)
* Update release notes for 0.9.3
* Add --mount option for `create` & `run` command
* Refactor Wait() to not require a timeout
* Updates from reviews
* Implement new subcommands
* Don't mount /dev/shm if the user told you --ipc=none
* rootless: error out if there are not enough UIDs/GIDs available
* Vendor in latest containers/buildah
* rootless: fix create with images not in the storage
* rootless: skip usage of filepath.Join
* create, rootless: join the userns of ns:PATH
* create, rootless: join the userns of container:CONTAINER
* spec: refactor ns modes to a common interface
* Don't output inodes created to run a container
* Add rpmbuild to the openshift fedora test image
* Add new field to libpod to indicate whether or not to use labelling
* Bind Mounts should be mounted read-only when in read-only mode
* test, rootless: enforce cgroupfs manager
* report when rootless
* add the gopath environment variable to the openshift dockerfile
* Vendor in latest opencontainers/runtime-tools
* Add python-varlink to the Fedora openshift image
* Add Dockerfile for openshift lint, gofmt, and validate testing
* Vendor in latest containers/buildah
* Don't crash if an image has no names