forked from rhatdan/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
4374 lines (4299 loc) · 190 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.9.0 (2020-04-15)
* podmanV2: fix nil deref
* v2specgen prune libpod
* More system test fixes on regressions
* Add support for the global flags and config files
* Bump to v1.9.0-dev
- Changelog for v1.9.0-rc2 (2020-04-14)
* Update release notes for v1.9.0-RC2
* v2podman ps revert structure changes
* podmanv2 mount and umount
* Fix invalid container path comparison for pid cgroup
* v2podman add container init
* Need to set security options even if user does not specify options
* podmanv2 version format variable name change
* Fixes for load and other system tests
* Improve APIv2 support for Attach
* Refactor service idle support
* podmanv2 history and image remove templates
* Bump to v1.9.0-dev
* rootless: use snprintf
* podmanV2: implement search
- Changelog for v1.9.0-rc1 (2020-04-13)
* build(deps): bump github.com/containers/buildah from 1.14.7 to 1.14.8
* Update release notes for v1.9.0-RC1
* v2podman container cleanup
* podmanV2: implement logs
* test: enable preserve fds test for crun
* test: fix exec preserve-fds test
* Set exit codes on errors.
* Run (make vendor)
* Fix (make vendor)
* update the latest version to 1.8.2
* add tests for kill and exists
* v2podman ps alter formats
* run/create were processing options after the image name
* V2 podman system service
* man page: add note about issue with SELinux
* Bump Buildah to v1.14.7
* Bump containers/image to v5.4.3
* V2 podman diff(changes) support
* podman info needs to be run within the user namespace
* podmanv2 images user format
* podmanv2 info
* vendor c/image v5.4.2
* Do not error on pids.current stats if ctr.path is empty
* fix rootless login/logout tests
* v2podman run
* refactor info
* podmanv2 ps
* userns: support --userns=auto
* podmanv2 start
* build(deps): bump github.com/containers/common from 0.8.0 to 0.8.1
* build(deps): bump github.com/containers/storage from 1.18.1 to 1.18.2
* build(deps): bump github.com/opencontainers/selinux from 1.4.0 to 1.5.0
* v2podman attach and exec
* v2podman container create
* Cleanup whether to enter user namespace for rootless commands
* podmanv2 save image
* podmanv2 version
* checkpoint: handle XDG_RUNTIME_DIR
* checkpoint: change runtime checkpoint support test
* Pass path environment down to the OCI runtime
* podmanv2 checkpoint and restore
* Bump github.com/containers/common from 0.6.1 to 0.8.0
* test/e2e/run_volume_test: use unique mount point
* test/e2e/run_volume_test.go: mv dockerfile decl
* test/e2e/run_volume_test: only create dir once
* Fix environment handling from containers.conf
* podmanV2: implement push
* pkg/spec.InitFSMounts: optimize
* utils: delete dead code
* attach: skip shutdown on errors
* attach: fix hang if control path is deleted
* pkg/spec.InitFSMounts: fix mount opts in place
* podmanv2 export
* podmanv2 import
* podmanv2-retry - new helper for testing v2
* podmanv2 load
* podmanv2 pod inspect
* V2 podman inspect
* Fix repos for CentOS 7 RPM build
* podman v2 image tag and untag
* podmanv2 pod ps
* Touch up mailing list address in README.md
* add systemd build tag to podman builds
* Bump github.com/rootless-containers/rootlesskit from 0.9.2 to 0.9.3
* Switch to using --time as opposed to --timeout to better match Docker.
* podmanV2: implement pull
* pkg/spec/initFSMounts: fix
* Cirrus: Remove darwin/windows builds in gate-job
* Cirrus: Update VM Images
* Cirrus: Minor docs update
* Revert "Default CPUShares in Inspect are 1024"
* fix more swagger inconsistencies
* V2 Move varlink home
* Bump github.com/containers/conmon
* Bump github.com/spf13/cobra from 0.0.6 to 0.0.7
* rootless: make cgroup ownership detection not fatal
* podmanv2 enable healthcheck run
* Update vendor of boltdb and containers/image
* swagger: top: remove "Docker" from the identifiers
* podmanv2: implement pod top
* v2 api: implement pods top endpoint
* podmanv2 commit
* Bump to buildah v1.14.5
* Add support for containers.conf
* API v2 tests: usability improvements
* Sanitize port parsing for pods in play kube
* podmanv2 pod create using podspecgen
* use `pause:3.2` image for infra containers
* Add support for specifying CNI networks in podman play kube
* Fix typo in pod create
* podmanV2: implement top
* Fix Markdown typo in podman-create.1.md
* V2 podman image prune
* Support label filters for podman pod ps.
* podmanv2 container inspect
* podmanv2 pod subcommands
* Add bindings for Container Exec Create + Inspect
* apiv2 add default network in specgen
* slirp: enable seccomp filter
* V2 podman image rm | podman rmi [IMAGE]
* V2 podman image
* podmanv2 add pre-run to each commmand
* Ensure that exec sends resize events
* enable linting on v2
* Bump github.com/rootless-containers/rootlesskit from 0.8.0 to 0.9.2
* Bump github.com/containers/storage from 1.16.5 to 1.16.6
* V2 podman images/image list
* podmanv2 volumes
* Combine GlobalFlags and EngineFlags into EngineOptions
* Complete podmanV2 history command
* rootlessport: use x/sys/unix instead of syscall
* podmanv2 exit code
* Bump github.com/sirupsen/logrus from 1.4.2 to 1.5.0
* Correctly document libpod commit endpoint
* Implement APIv2 Exec Create and Inspect Endpoints
* apiv2 container commit for libpod
* Add image signing with GPG tutorial
* podmanv2 add core container commands
* Improved readability in image json output
* podmanv2 volume create
* Add stubs for cmd/podman in non-Linux local mode
* Make libpod/lock/shm completely Linux-only
* Add stubs for pkg/adapter/terminal_linux.go
* Add a stub for libpod.Container.Top
* Make cmd/podman/shared.GenerateCommand tests Linux-only
* Fix the libpod.LabelVolumePath stub
* Only run TestGetImageConfigStopSignal on Linux
* Fix the pkg/specgen/SpecGenerator.getSeccompConfig stub
* podmanv2 pod exists
* when removing networks for tests, force should be used
* Add basic structure of a spec generator for pods
* [CI:DOCS]fix type issue in pod binding test
* podmanv2 enable remote wait
* fix remote connection use of context
* use boolreport for containerexists response
* podmanv2 container exists|wait
* Add APIV2 service files
* Attempt manual removal of CNI IP allocations on refresh
* Implemented --iidfile for podman commit
* Add guildline for writing podman V2 CLI commands
* Use creds form PullImage remote
* Fix docker man page links
* Bump to v1.8.3-dev
* [CI:DOCS]remove podmanv2 binary
* Cirrus: Update VM images
* Cirrus-CI: Fix source path of vendor task
* Cirrus: Enable future installing buildah packages
* Cirrus: Include packages for buildah CI
* Cirrus: Update Ubuntu base images
* Cirrus: Use opensuse open build Ubuntu packages
* Update release notes for v1.8.2 final release
* rootlessport: handle SIGPIPE
* apiv2 add bindings for logs|events
* Bump github.com/containers/common from 0.5.0 to 0.6.1
* Add inspect for exec sessions
* Add structure for new exec session tracking to DB
* Populate ExecSession with all required fields
* Fix path of tmp_dir
* Cirrus: Disable non-docs release processing
* container prune remove state created, configured
* Cirrus: Log libseccomp package version
* docs: mention that "podman version" prints out Remote API Version
- Changelog for v1.8.2 (2020-03-19)
* fix reported compat issues
* Don't include SUBDIR in windows.zip
* rootless: fix usage with hidepid=1
* V2 podman command
* serve swagger when present
* swagger: more consistency fixes
* Vendor in containers/buildah v1.14.3
* Reduce CPU usage when --timeout=0
* New test: man page cross-ref against --help
* podman: avoid conmon zombie on exec
* Filter pods through pod list api
* Bump to v1.8.2-dev
* Fix vendoring on master
* fix timeout file flake
* auto updates
* pkg/systemd: add dbus support
- Changelog for v1.8.2-rc1 (2020-03-17)
* Update release notes for v1.8.2-rc1
* Fix vendoring on master
* Update containers/storage to v1.16.5
* config: make warning clearer
* Four small CI fixes:
* fix systemd generate tests
* apiv2 addition of manifests
* add os|arch attributes when building
* Missing double quotes in troubleshooting guide.
* force run container detached if container CreateCommand missing the detach param
* Bump github.com/containers/common from 0.4.2 to 0.5.0
* Bump k8s.io/api from 0.17.3 to 0.17.4
* Bump github.com/fsnotify/fsnotify from 1.4.7 to 1.4.9
* eat signal 23 in signal proxy
* add apiv2 healthcheck code
* turn off color-mode for bindings
* remove imagefilter for varlink remote client
* Bump github.com/containers/storage from 1.16.2 to 1.16.3
* run --rmi test: make it work
* rootlessport: detect rootless-child exit
* create: do not calculate image size
* Follow up changes from #5244
* man page cross-reference fixes: part 2
* Update version in README to v1.8.1
* [CI:DOCS]Add libpod event endpoint
* Bump to v1.8.2-dev
* Update start stop api to use pod status function.
* Fix bug podman reset to not remove $XDG_RUNTIME_DIR
- Changelog for v1.8.1 (2020-03-11)
* man pages: fix inconsistencies
* Update release notes for v1.8.1 final release
* build for amd64|arm|ppc64le
* update systemd & dbus dependencies
* Refactor handler packages
* Remove nonexistent --set arg from runlabel documentation
* hide --trace flag
* podman --help: mention defaults of bools
* docs: clarify that --syslog expects an argument
* Bump to v1.8.1-dev
* commands: rename file and add likns to readthedocs
- Changelog for v1.8.1-rc4 (2020-03-09)
* Revert "exec: get the exit code from sync pipe instead of file"
* Revert "Exec: use ErrorConmonRead"
* Revert "exec: fix error code when conmon fails"
* rootles tutorial: remove systemd unit example
* generate systemd: add `default.target` to INSTALL
* Bump github.com/containers/storage from 1.16.1 to 1.16.2
* use storage/pkg/ioutils
* use storage/pkg/homedir
* Fix spelling mistakes in code found by codespell
* add default network for apiv2 create
* Bump to v1.8.1-dev
* Allow users to set TMPDIR environment
* Fix upstream dockerfile and add 'by hand' ctrfile
* Cirrus: Fix fedora-minimal mirroring
* fix security-opt generate kube
- Changelog for v1.8.1-rc3 (2020-03-06)
* Update release notes for v1.8.1-RC3
* Part 2: try to clean up the long image instance names
* WIP: Try renaming long cirrus job names
* vendor: update github.com/containernetworking/cni to v0.7.2-0.20200304161608-4fae32b84921
* Removed extraneous comments and defaults plus amended variable declaration
* Removed the unnecessary code
* Implemented size parameter on GetContainer
* Implement size parameter on ListContainers
* Map configured status to created to match docker API states
* Fix to remove null entry from end of images json
* Register handlers without version to align with docker API
* golangci: enable goimports
* generate systemd: remove leading slashes
* exec: fix error code when conmon fails
* Vendor buildah 1.14.2
* env: don't set "container" env
* Fix podman image sign help output
* avoid adding to nil map
* Exec: use ErrorConmonRead
* exec: get the exit code from sync pipe instead of file
* generate systemd: add network dependencies
* Bump to Buildah v1.14.1
* APIv2 tests: add tests for stop
* Add the rmi flag to podman-run to delete container image
* consolidate env handling into pkg/env
* CI: format cirrus logs
* Update docs/source/markdown/podman-build.1.md
* Allow devs to set labels in container images for default capabilities.
* CI: add API v2 tests
* more swagger fixes
* Bump github.com/opencontainers/selinux from 1.3.2 to 1.3.3
* Add validate() for containers
* Cirrus: Fix gate image & false-positive exits
* Update pod bindings and Add test to validate prune pod apiv2 binding.
* Fix wrong condition in bindings test
* Ensure that exec sessions inherit supplemental groups
* Cirrus: Update VM images
* Cirrus: Force runc use in F30
* rework apiv2 wait endpoint|binding
* build: specify input fd to buildah
* Cirrus: Remove unnecessary handle_crun workaround
* Cirrus: Print env. vars at end of setup.
* Cirrus: Fix not growing Fedora root
* network create should use firewall plugin
* add firewall plugin (no backend) to default cni config
* binding tests for volumes
* Bump to v1.8.1-dev
* container Exists: fix URL
* CI: package_versions: include hostinfo, kernel
* Review comments
* [WIP] Add cmd flag to show container name in log
- Changelog for v1.8.1-rc2 (2020-02-27)
* Update release notes for v1.8.1-rc2
* Vendor in latest containers/buildah
* kill test: clean up warnings; document better
* curb flakes in integration tests
* spec: allow container alias name in lookup
* add epoch for specfile
* fix trivial typo
* Add support for multiple CNI networks in podman inspect
* Remove 1 sec delay
* Temp. skip "remove pause by id" bindings test
* Fix kill test obtaining CID
* System Tests: Force default signal handlers
* Fix cgroupsv2 run test, unexpected output
* Cirrus: SELinux Enforcing for F31 w/ CGv2
* Cirrus: collect podman system info
* Cirrus: F31: Force systemd cgroup mgr
* Cirrus: Temp. disable F31 p-in-p testing
* Cirrus: Handle runc->crun when both are possible
* Cirrus: Use deadline elevator in F31
* Cirrus: Support testing with F31
* rootless: become root only if the pause file is specified
* rootless: fix segfault when open fd >= FD_SETSIZE
* apiv2 tests: add more pod tests, timing check
* Update vendor of buildah and containers/common
* build: move initialization after SetXdgDirs
* utils: relax check for directory to use
* add apiv2 tests for podman pause and stop
* always run the docs task on post-merge
* Fixed build_rpm.sh script for Fedora 30
* Add basic deadlock detection for container start/remove
* Friendly amendment: tests, and a help message
* fix port list by container with port
* more image binding tests
* docs: symlink to host device is resolved
* Add --no-healthcheck command to create/run
* enable ci on go binding tests
* add more image tests for go bindings
* Bump to v1.8.1-dev
* build(deps): bump github.com/opencontainers/selinux from 1.3.1 to 1.3.2
- Changelog for v1.8.1-rc1 (2020-02-21)
* Update release notes for v1.8.1
* disable generation of cni firewall plugin
* search endpoint failure correction
* Remove ImageVolumes from database
* Upgrade make package-install for fedora31
* Flake fix: race condition in same-IP test
* Add support for ssh:// and unix:// podman clients
* search test on fedora registry: retry 5 times
* Swagger: yet more fixes
* Login test: use --password-stdin
* implement reverse reader for log reads
* podman images: add --filter=since=XX
* populate resolv.conf with dnsname responses when in usernamespace
* Beautify podman bridge CNI config
* build(deps): bump github.com/spf13/cobra from 0.0.5 to 0.0.6
* Warn user about --password cli option in login
* build(deps): bump github.com/stretchr/testify from 1.5.0 to 1.5.1
* Swagger: fix one incorrect comment
* apiv2 container create using specgen
* Add test to validate the pod bindings api
* Update to the latest version of buildah
* New login and push tests
* Add network options to podman pod create
* Fixed syscall.Signal not convertable by decoder
* Fixed typo in KillContainer
* build(deps): bump github.com/containers/storage from 1.15.8 to 1.16.0
* build(deps): bump github.com/stretchr/testify from 1.4.0 to 1.5.0
* libpod.conf: clarify `label` description
* set process labels in pkg/spec
* libpod/config: use built-in TOML instead of manually merging
* Fixed CreateImageFromImage not respecting supplied Tag parameter
* Add installation of pre-commit to Makefile
* fix mandatory parameter in login/logout
* adds missing query struct tags and exports the fields
* Swagger: fix inconsistencies (try #2)
* Update mux rules to allow slashes in image names
* rootless: fix a regression when using -d
* Misc typo fixes
* Use cleaned destination path for indexing image volumes
* Add ability for pods to use the host network
* stats: Expose CPU usage in API
* rootless: check if the conmon process is valid
* apiv2: Fixup /containers/json filters documentation
* apiv2: Enable filtering images by ID
* Fix handler and systemd activation errors
* podman-ps: support image IDs
* Refactor image tree for API usage
* Update documentation of commit command to show image reference is optional
* Rework label parsing
* add caching for binding tests
* apiv2 libpod container logs
* add pkg/signal
* add pkg/capabilities
* build(deps): bump github.com/rootless-containers/rootlesskit
* Fix SELinux labels of volumes
* podman(1): fixes
* fix bug "" disable detach keys
* Fixed a bug about bash automatically complete
* Enhance fuse-overlayfs instructions.
* README: fix docs links
* Fix up play kube to use image data
* build(deps): bump k8s.io/api from 0.17.2 to 0.17.3
* Only set --all when a status filter is given to ps
* use quay.io/libpod/fedora-minimal for reliability
* filtering behavior correction
* support device-cgroup-rule
* rootlessport: drop Pdeathsig in favor of Kill
* rootlessport: fix potential hang
* add pkg/seccomp
* Do not copy up when volume is not empty
* api: pull: fix reference parsing
* cmd/podman/pull: refactor code
* stats: add SystemUsage
* build(deps): bump k8s.io/apimachinery from 0.17.2 to 0.17.3
* build(deps): bump github.com/gorilla/mux from 1.7.3 to 1.7.4
* HTTP 304 (NotModified) is not an error!
* API v2 tests: catch up to moving target
* api: fix the CPU stats reported
* apiv2 stream events
* Fix container filters
* API v2: pods: fix two incorrect return codes
* Rewire ListContainers for APIv2 libpod
* podman build -f completions
* swagger: fix /libpod/images/{import,load,pull}
* Make: s/uname -o/uname -s/
* container create: relax os/arch checks
* replace prow images test
* Remove incorrect validation of --change for commit
* [CI:DOCS] Update Code of Conduct to Containers variant
* Add test cases to validate remove and list images api.
* images --format compatible with docker
* bash-completions: Add missing subcommands in 'podman system'
* doc: Fix examples for 'podman system service'
* v2 api: /libpod/images/import
* v2 api: /libpod/images/load
* v2 api: /libpod/images/pull
* docs: add workaround for --device with rootless containers (II)
* Fix varlink code generation target.
* Modify Runtime.getImage to return a storage.Image
* Document an aspect of newFromStorage behavior
* Introduce a Runtime.newImage constructor
* Move Image.getLocalImage to Runtime.getLocalImage
* Remove the getLocalImage() call from Image.Size
* Use Runtime.NewFromLocal instead of open-coded copies
* Trivial simplification
* Create two separate newImage instances in Runtime.New
* Call NewImageRuntimeFromStore from NewImageRuntimeFromOptions
* Update readme to 1.8.0 release
* Refactor runtime functions to pass options structure
* build(deps): bump github.com/containers/image/v5 from 5.2.0 to 5.2.1
* LibpodAPI.BuildImage: don't require a name for the new image
* Bump to v1.8.1-dev
* Cirrus: Never run prune on other branches
* Add dockerfile to mirror fedora-minimal
* Add /swagger/ endpoint to serve swagger yaml to clients
* Add backend code for pod network options
- Changelog for v1.8.0 (2020-02-06)
* [CI:DOCS]update contrib systemd user
* [CI:DOCS]fix systemd files for apiv2
* Update release notes for final release of v1.8.0
* Move podman-service to podman-system-service
* Only modify conmon cgroup if we have running containers
* fix swagger docs and make sure docs validation runs
* Special case memory-swap=-1
* vendor github.com/mtrmac/[email protected]
* vendor github.com/containers/image/[email protected]
* Add Containerfile location e2e test
* [CI:DOCS]addition of specgen package
* {CI:DOCS] run gofmt before lint
* build(deps): bump github.com/onsi/ginkgo from 1.11.0 to 1.12.0
* Close tarSource when finished using it
* Force --all when --filter is passed to podman ps
* Initial implementation of a spec generator package
* Fix wrong Containerfile location on build
* Wrap error for failing ImageSize calls
* swagger: v2: libpod/images/{import,load,pull}
* seperate container create network options
* Cirrus: Fix gate task + make lint|validate
* Add a binding test to check image tag and list commands.
* Update /_ping support
* [CI:DOCS]add apiv2 endpoints for exec
* build(deps): bump github.com/containers/storage from 1.15.7 to 1.15.8
* build(deps): bump github.com/onsi/gomega from 1.8.1 to 1.9.0
* Tear down network when restarting containers
* Move install.md to podman.io, leave link page
* Update XML to not embed quote in PATH on windows
* Bump to v1.8.0-dev
- Changelog for v1.8.0-rc1 (2020-01-31)
* Fix a syntax error in hack/release.sh
* Minor update to release notes
* sigproxy: return after closing the channel
* fix longname handling for bindings
* Update release notes for v1.8.0
* compat container names begin with /
* Assure validate includes lint
* make image reference for commit optional
* adjusts install.md (Ubuntu): replaces ${NAME} with hard-encoded Ubuntu to support all *buntu flavors
* adjusts install.md (Ubuntu): registries.conf setup is now in containers-image package
* markdown: fix erroneous asterisk markup for options
* speed up Makefile
* Makefile: systemd: echo instead of warn
* Makefile: remove redundant BUILDFLAGS
* Makefile: consistent PHONY use
* Makefile: remove dead vagrant target
* Makefile: move systemd buildtag check
* rootless: enable shortcut only for podman
* test: honor TEMPDIR variable
* Cirrus: Set EPOCH_TEST_COMMIT during gate task
* Deprecate & remove IsCtrSpecific in favor of IsAnon
* apiv2 binding test fixes
* history: fix size computing
* run `varlink_generate` on Linux only
* display file name of bad cni conf
* Throw error on invalid sort value
* rootless login/logout tests fail
* Update remote client bridge documentation.
* honor pull policy in play kube
* docs: replace '~' with $HOME in markdown as '~' isn't rendered properly
* install.md: registries.conf setup in containers-image package
* [CI:DOCS]Binding overhauls
* docs: fix incomplete heading underlining in network.rst
* build(deps): bump github.com/rootless-containers/rootlesskit
* docs: add missing hyphen for '-t' option, command '$' prompts
* build(deps): bump github.com/opencontainers/selinux from 1.3.0 to 1.3.1
* [CI:DOCS]rootless exec cannot join root namespace
* expose --arch-override option for pull
* Add link from docker.sock to podman.sock
* inspect image healthchecks
* [CI:DOCS]Add copr link to fedora install page
* Hidden remote flags can be nil
* docs: add boolean values and defaults to "man podman-history" options
* docs: remove reference to "sudo" in "podman exists" examples
* docs: fix system-prune markdown; reword for clarity
* docs: clean up "man podman-rm", "man podman-rmi"
* install.md: mention availability of OpenEmbedded recipes
* Cleanup man pages exit code descriptions
* APIv2 review corrections #3
* camelcase: fix lint reports
* fork fatih/camelcase
* Refactor time parsing to be more liberal in accepted values
* apparmor: allow receiving of signals from 'podman kill'
* Add query parameter converters for complex types
* Review corrections pass #2
* build(deps): bump gopkg.in/yaml.v2 from 2.2.7 to 2.2.8
* Default CPUShares in Inspect are 1024
* markdown: fix grammar/formatting, standardize on markdown
* build(deps): bump k8s.io/api from 0.17.0 to 0.17.2
* build(deps): bump github.com/pkg/errors from 0.9.0 to 0.9.1
* build(deps): bump github.com/containers/conmon
* build(deps): bump github.com/json-iterator/go from 1.1.8 to 1.1.9
* build(deps): bump github.com/uber/jaeger-client-go
* build(deps): bump github.com/containernetworking/plugins
* seccomp policy: expect profile in config label
* build(deps): bump github.com/vishvananda/netlink from 1.0.0 to 1.1.0
* build(deps): bump github.com/containers/storage from 1.15.5 to 1.15.7
* Update README.md to reference latest version
* Enable swagger validation for each PR
* Fix example format in system df man
* markdown: fix formatting of commands at bottom of podman-exec
* markdown: reword 'podman-inspect' to properly explain '--size'
* correct search-and-replace error
* Update release script to not manage epoch
* markdown: remove extraneous backquote from "podman rmi"
* markdown: fix formatting/content typos in migrate man page
* Update RELEASE_NOTES for v1.7.1
* Add service endpoint
* Cirrus: Fix logic typo
* Update build images
* Cirrus: No upload snap for docs job
* [CI:DOCS]First pass at review comments
* go.mod: fix parse error
* Use cgroupv2 super magic from golang.org/x/sys/unix
* Disable go mods on varlink builds in spec
* [CI:DOCS] Add logo and dev statement
* rootless: set C variables also on shortcut
* [CI:DOCS]static files end up in _static on rtd
* [CI:DOCS] Correct link syntax
* [CI:DOCS]Connect API docs and RTD
* post-process swagger yaml for publish
* Tests for API v2
* Minor: Bugfix in upload image
* Update `tag` documentation regarding 'alias' usage
* update install instructions for Debian, Raspbian and Ubuntu
* oci_conmon: do not create a cgroup under systemd
* Add an API for Attach over HTTP API
* systemdgen: specify --cgroups=disabled-conmon for --new
* podman: add new option --cgroups=no-conmon
* systemdgen: add --ignore flag to generic services
* e2e/run_signal_test.go: make it more robust
* hack/install_golangci.sh: check env vars
* Remove c.String(net)
* make binaries: include service
* service: don't block sigterm
* Cirrus: remove workaround for cleaning /go/bin
* [CI:DOCS]swagger cleanup and left-hand nav
* Add APIv2 CLI example POC
* api: stats: fix typo
* api: utils: add an `IsLibpodRequest` handler
* refactor top code
* top: use a separate pipe for the error stream
* v2 api: top improvements
* v2: stats: drop redundant sleep when streaming
* v2: stats: libpod: use generic handler
* v2: stats: rigorous error checks
* v2: stats: fix errors
* v2: stats: do not ignore errors
* v2: stats: remove windows-specific fields
* make .install.golangci-lint: force specific version
* Makefile: remove gometalinter
* contrib/gate/Dockerfile: bump to F31
* [CI:DOCS]swagger corrections
* Bump to Buildah v1.13.1
* oci_conmon: not make accessible dirs if not needed
* Enable pre-commit tool linting
* .gitignore: ingore *.coverprofile from unit tests
* make lint: include unit tests
* .golangci.yml: move swagger.go from Makefile
* make lint: include docs/
* make lint: include pkg/tracing
* revert accidental change from codespell pr.
* swagger documentation updates
* Do not configure CNI when slirp4netns is requested
* clarify container prune --force
* more BATS tests
* gating: clean /go/bin to install fresh tools
* make lint: enable gocritic
* linter: blacklist linters instead of whitelisting
* bump golangci-lint to 1.18.0
* rm contrib/perftest
* remove `.tool/lint`
* docs: --privileged docs completeness, consistency
* [Makefile] Ensure .gopathok dependency is met for varlink
* Add codespell to validate spelling mistakes in code.
* libpod: fix --userns=keep-id with big UIDs
* fix e2e test failure
* Cirrus: Fix libpod base images going stale
* address review comments before merge
* [CI:DOCS]update apiv2 documentation with swagger goods
* Initial commit on compatible API
* cp: drop check for rootless
* test: fix error message
* log: support --log-opt tag=
* Fix Makefile ref libseccomp branch as a commit
* policy for seccomp-profile selection
* podman-generate-systemd --new
* shared/create.go: s/data/imageData/
* rootlessport: honor ctr.runtime.config.TmpDir
* rootlessport: remove state dir on exit
* Usage messages: show possible option values
* Update podmanimage build process
* exec: fix pipes
* fix lint - pkg/varlinkapi/virtwriter
* fix lint - pkg/util: func comment
* fix lint - pkg/spec
* fix lint in pkg/rootless
* fix lint - pkg/network: comment exported types
* fix lint - pkg/adapter: comment exported API
* fix lint - ignore image.ImageDeleteResponse definition
* fix lint - drop else block
* fix lint: add comment for NameRegex and error
* fix lint: correct func identifier in comment
* fix lint: "guarantess" is a misspelling of "guarantees"
* rootless: use RootlessKit port forwarder
* Add `untag` sub-command
* Update demo for the inspect command
* Fix podman-remote info to show registry data
* packaging: validate installed rpms
* github stale workflow: rephrase and bump close time
* Don't show PASS on success for gitvalidate
* Bump gitvalidation epoch
* Bump to v1.7.1-dev
* play kube: make seccomp handling better conform to k8s
* fix bug copy from container directory
* Add history names to image inspect data
- Changelog for v1.7.0 (2020-01-06)
* (minor) fix broken links to container-policy.json.5
* Generate binaries only if they are changes in src code.
* Fix presentation of man page tables
* Bump gitvalidation epoch
* Bump to v1.7.0-dev
- Changelog for v1.7.0-rc2 (2020-01-02)
* Update release notes with further changes from 1.7.0
* refactor network commands
* Fix race condition in kill test leading to hang
* Ensure 'make uninstall' remove bin and conf files.
* Add the pod name when we use `podman ps -p`
* Ensure SizeRw is shown when a user does 'inspect --size -t container'.
* signal parsing - better input validation
* The --quiet flag does not conflict with templates in ps
* add struct response for removal of images
* Update containers/storage to v1.15.4
* Update containers/storage to v1.15.4
* zsh completion: ignore multi-line output in Flags
* build(deps): bump github.com/containers/image/v5 from 5.0.0 to 5.1.0
* if container is not in a pid namespace, stop all processes
* update c/buildah to v1.12.0
* Remove volumes after containers in pod remove
* libpod: drop arbitrary memory limit of 4M
* docs: add workaround for --device with rootless containers
* install.md: openSUSE dependencies
* Use systemd/sd-daemon.h headers for systemd presence
* Allow the injection of TESTFLAGS
* Remove coverprofile from the repository
* troubleshooting.md: rebased master and bumped 18 to 19
* Fix F30-F31 migration for Podman 1.7.0
* runtime.go: show registries data and search table
* container config: add CreateCommand
* Fixed the path of hack scripts in spec file
* runtime.go: show search table in podman info
* podman info man: example update
* podman: mirror information
* Reap exec sessions on cleanup and removal
* [Makefile] `LDFLAGS` is reserved for the GCC linker
* podman images history test - clean up
* Bump gitvalidation epoch
* Bump to v1.7.0-dev
* allow exec to read files of environment variables
* Correctly export the root file-system changes
* build(deps): bump github.com/uber/jaeger-client-go
- Changelog for v1.7.0-rc1 (2019-12-11)
* Update release notes for 1.7.0
* docs: update podman-{pod-,}top man pages
* build(deps): bump github.com/containers/psgo from 1.3.2 to 1.4.0
* Update containers/storage to v1.15.3
* move image filters under libpod/images
* Re-add Fedora 31 migration code.
* macvlan networks
* Return empty runtime directory if we're not rootless
* build(deps): bump github.com/containers/storage from 1.15.0 to 1.15.2
* Use terminal detach keys sequence specified in the config file
* Add ONBUILD support to --change
* Move Commit() to new parsing for --change
* test for #3920 (improper caching of tarballs in build)
* Enable multi-platform rpm building
* Completely rework --change parsing
* Avoid git warnings by using detach on checkout
* Improve hack/get_release_info.sh
* Bump Buildah to v1.11.6
* rootless: enable stats test on cgroup v2
* Improve dnf tests inside build_rpm.sh
* libpod: fix stats for rootless pods
* rootless: add fallback for renameat2 at runtime
* Attempt to install go-md2man only if missing
* Quick grammar touchup in rootless.md
* Allow chained network namespace containers
* Ensure volumes reacquire locks on state refresh
* Ignore ErrCtrRemoved when removing a container
* Add comment on rootless containers creating device nodes
* Updates on making doc building and debug optional
* troubleshooting: warn about secure boot
* libpod: fix case for executable file not found errors
* build: improved main makefile
* build: improved prepare.sh
* Fix podman-remote version to print client and server
* man page updated with examples of filter option
* install.md: added slirp4netns dependency to ubuntu
* Add podman system reset command
* fix commands.go to get links from correct directory
* Do not initialize store on rootless podman
* filter added to container prune command
* Disable checkpointing of containers started with --rm
* Make doc building in spec optional
* Donot install btrfs in RHEL/CentOS-8
* oci: print only matching part for the errors
* command output fixed as per docker equivalent
* Detect Python executable in Makefile
* Improved build_rpm.sh
* Add support for image name history
* Remove containers when pruning a stopped pod.
* Allow --ip and --mac to be set when joining a CNI net
* Document other bind options on --volumes flag
* podman {pod,} rm/stop: add --ignore flag
* Discard errors from Shutdown in `system renumber`
* e2e/prune: run two top containers
* build(deps): bump github.com/containers/storage from 1.13.5 to 1.14.0
* build(deps): bump gopkg.in/yaml.v2 from 2.2.5 to 2.2.7
* build(deps): bump github.com/pkg/profile from 1.3.0 to 1.4.0
* document updated for filter and until options
* filter added to image pruge command.
* config: use EventsLogger=file without systemd
* Error on netns not exist only when ctr is running
* Add ContainerStateRemoving
* play kube: handle seccomp labels
* podman rm/stop --cidfile
* container-restore: Fix restore with user namespace
* Add new test suite for build
* Also delete winsz fifo
* use pause image for check all
* timestamp related functions added
* Bump to Buildah v1.11.5
* container create: os/arch check
* history: rewrite mappings
* codespell: spelling corrections
* Cirrus: Use branch-specific container tags
* warning added before image prune command
* create a separate install target for seccomp
* Add annotations in play kube
* Add pod annotations to container
* Add missing information to podman.1 man page
* Add support for make vendor-in-container
* Split up create config handling of namespaces and security
* test: add tests for --mac-address
* mount: add new options nocopyup|copyup for tmpfs
* Bump github.com/uber/jaeger-client-go
* libpod/config: default: use `crun` on Cgroups v2
* podman images --digest: always list a digest
* events: make sure the write channel is always closed
* Add support for RunAsUser and RunAsGroup
* cni: enable tuning plugin
* podman: add support for specifying MAC
* vendor: updated ocicni for MAC address
* Makefile: add vendor-in-container
* rootless: provide workaround for missing renameat2
* rootless: use SYS_renameat2 instead of __NR_renameat2
* Add Kata Containers runtimes to libpod.conf
* help message: don't parse the config for cgroup-manager default
* fix bug check nonexist authfile
* Allow users to disable detach keys
* namespaces: by default create cgroupns on cgroups v2
* Update installation - Ubuntu. [skip ci]
* pulling unqualified reference: make sure it's a docker reference
* Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.5
* Set SELinux labels based on the security context in the kube.yaml
* Add links to readthedocs on docs/readme
* Bump development version to 1.6.4-dev
* Bump version in README to v1.6.3
* Add release notes for v1.6.3
* slirp4netns: fix timeout
* docs: Update "podman container rm -v" description
* logo: correct light source reflection
* stats: fix calculation for the CPU time
* [docs] Ensure we include section 5 documentation
* [Makefile] Fix docker documentation install and generation
* Fixed the JSON go template format for the 'info' action
* runtime: Fix typo
* Update link to Commands documentation
* cgroups: read correctly the CPU stats
* [CI:DOCS] make docs only prs
* Update rootless shortcomings with cgroup V2 information
* Bump github.com/onsi/gomega from 1.7.0 to 1.7.1
* Validate contextdir on build
* Vendor in latest containers/buildah
* Bump github.com/onsi/ginkgo from 1.10.1 to 1.10.3
* Refactor test to prevent panic
* logs: support --tail 0
* Update document formatting and packaging code
* Restructure documentation dir
* add libpod/config
* Switch to bufio Reader for exec streams
* container start: fix regression when using name
* Fix selinux test for exec
* Cirrus: Disable F29 testing
* Wait for `mount` command to finish when mounting volume
* Cirrus: Fix upload_release_archive on branch or tag
* Fix cp from pipe
* libpod, rootless: create cgroup for conmon
* Bump github.com/json-iterator/go from 1.1.7 to 1.1.8
* seccomp: use github.com/seccomp/containers-golang
* build: drop support for ostree
* stale action: add exempt-issue-label
* Processes execed into container should match container label
* Set default seccomp.json file for podman play kube
* images: distinguish between tags and digests
* API: report multiple digests for images
* pull/create: add --override-arch/--override-os flags
* image: don't get confused by lists
* Add e2e tests for manifest list support
* bump containers/image to v5.0.0, buildah to v1.11.4
* goland autocorrections
* Makefile: fix embedding gitCommit
* Cirrus: Fix minor python deprecation warning
* Cirrus: Only upload tagged releases
* Fix spelling mistakes
* libpod: if slirp4netns fails, return its output
* update conmon to v2.0.2 in in_podman image
* bump cirrus images
* require conmon v2.0.1
* require conmon v2.0.0
* GitHub stale action
* enable dnsplugin for network create
* Add ensureState helper for checking container state
* Cleanup man pages
* Log warn instead of error for removing nonexistant container
* systemd: mask /sys/fs/cgroup/systemd/release_agent
* Add multiple networks explanation to docs
* rootless: raise an error with --network=
* Initial dump of man pages and first menus
* Return a better error for volume name conflicts
* Add documentation on options to volume create manpage
* Image volumes should not be mounted noexec
* stats: list all running containers unless specified otherwise
* rootless: detect no system session with --cgroup-manager=systemd
* add pip requirements file for rtd
* Initial checking for readthedocs
* Fix sig-proxy=false test and use image cache
* Add parsing for UID, GID in volume "o" option
* exec: remove unused var
* Rewrite backend for remote 'volume inspect'
* rootless: write storage overrides to the conf file
* Markdown Formatting Fixes
* Show volume options in 'volume inspect'
* System tests: make sure exec pid hash w/o leaking
* Bump gitvalidation epoch
* Bump to v1.6.3-dev
* check existing bridge names when creating networks
* Add support for anonymous volumes to `podman run -v`
* troubleshooting.md: document lingering mode
* rootless: do not enable lingering mode
* Add ability to redirect bash for run -i
* play kube: Container->Ctr
* play kube: refactor test suite
- Changelog for v1.6.2 (2019-10-17)
* Finalize release notes for v1.6.2
* rootless: drop dependency on docker
* Bump gitvalidation epoch
* Bump to v1.6.2-dev
* Refactor tests when checking for error exit codes
* Attach stdin to container at start if it was created with --interactive
- Changelog for v1.6.2-rc1 (2019-10-16)
* Add release notes for Podman 1.6.2
* start: print full container ID
* Add a MissingRuntime implementation
* rootless v2 cannot collect network stats
* inspect: rename ImageID go field to Image
* systemd: accept also /sbin/init
* Unwrap errors before comparing them
* vendor github.com/containers/[email protected]
* Ensure volumes can be removed when they fail to unmount
* Fix sample's JSON syntax error in oci-hooks.5.md
* change error wording when conmon fails without logs
* images: empty list is valid json with --format=json
* Allow giving path to Podman for cleanup command
* Touch up bad math in run man page
* Add squash-all, fix squash option in build
* tests: enable ps --size tests for rootless
* container: initialize results list
* Make user io.podman.service unit WantedBy=default.target
* rootless: do not set PIDs limit if --cgroup-manager=cgroupfs
* Update build man page with latest Buildah changes
* Fix default path for auth.json
* When restoring containers, reset cgroup path
* Migrate can move containers to a new runtime
* Move OCI runtime implementation behind an interface
* show uid_map in podman info
* cli: support --systemd=always
* systemd: expect full path /usr/sbin/init
* catch runc v2 error
* Respect --sig-proxy flag with podman start --attach
* rootless: automatically recreate the pause.pid file
* rootless: do not close files twice
* refresh: do not access network ns if not in the namespace
* Cirrus: Produce and collect varlink output
* io.podman.socket: drop Also=multi-user.target
* Cirrus: Remove broken/failing testing_crun task
* Cirrus: Use new VM cache images
* Cirrus: Install conmon in Fedora VMs
* vendor c/[email protected]
* troubleshooting: fix useradd no-log-init argument
* Setup a reasonable default for pids-limit 4096
* Update c/image to v4.0.1 and buildah to 1.11.3
* When evicting containers, perform a normal remove first
* Bump gopkg.in/yaml.v2 from 2.2.3 to 2.2.4
* podman network create: validate user input
* Cirrus: Simplify package NVR logging
* Docs: Update links, add links to latest
* Cirrus: Fix log URIs & add optional $ALSO_FILENAME
* Raise start_test polling interval
* system tests: info: deal with hyphen in username
* Bump gitvalidation epoch
* Bump to v1.6.2-dev
* Apply changes also to the windows implementation
* System-tests: Use bash explicitly
* Podman 1.6.0 has been released, update the README