forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
4015 lines (3949 loc) · 176 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.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
* Add api link to tutorials
* Bump gopkg.in/yaml.v2 from 2.2.2 to 2.2.3
* Allow setting default parameters with env vars
* Avoid hard-coding path to varlink and podman
* Allow changing IdentityFile and to IgnoreHosts
* rm: add containers eviction with `rm --force`
- Changelog for v1.6.1 (2019-10-02)
* Update release notes for v1.6.1
* Bump gitvalidation epoch
* Bump to v1.6.1-dev
* rootless: allow cgroupfs manager on cgroups v2
* system tests: reenable skipped tests
- Changelog for v1.6.1-rc1 (2019-10-02)
* rootless: set DBUS_SESSION_BUS_ADDRESS if it is not set
* install.md: add libbtrfs-dev for Debian build
* Bump github.com/onsi/gomega from 1.5.0 to 1.7.0
* Cirrus: Show names/versions of critical packages
* network: add workaround for slirp4netns --enable-sandbox issue
* rootless: do not attempt a CNI refresh
* Bump github.com/containernetworking/plugins from 0.8.1 to 0.8.2
* network: hide EPERM warning when rootless
* networking: fix segfault when slirp4netns is missing
* Bump gitvalidation epoch
* Bump to v1.6.1-dev
* Move derivitive doc so it won't be treated as a manpage
* catatonit: clone and build
* bump catatonit to v0.1.4
- Changelog for v1.6.0 (2019-09-30)
* info: add cgroups2
* Finalize release notes for 1.6.0 final
* Bump github.com/onsi/ginkgo from 1.8.0 to 1.10.1
* Bump github.com/docker/docker-credential-helpers from 0.6.2 to 0.6.3
* Bump github.com/stretchr/testify from 1.3.0 to 1.4.0
* Bump github.com/uber/jaeger-client-go
* Bump github.com/spf13/pflag from 1.0.3 to 1.0.5
* update c/storage to v1.13.4
* Cirrus: Minor, fix env. var. intention
* new examples added updated two examples with supported CMD and ENTRYPOINT syntax.
* new testcase for podman import --change added
* syntax updated for podman import --change
* Correct use of reexec.Init()
* Add a missing escape in the Makefile
* Change ginkgo Wait() to Eventually() test
* Set log-level immediately, before rootless setup
* Cirrus: Implement newly built VM images
* Add README note about security reporting process.
* Cirrus: Disable boottime Ubuntu package update
* Move noCache logic lower in stack
* cirrus: Add bash-completion support
* Add an error for pods without a name
* Make links relative in Tutorial README
* docs/podman-derivative-api.md: New file
* fix cp none exists dest path ends with '/'
* Dockerfile.fedora: install packages to build catatonit
* README: add Communications section
* drop OWNERS link for CONTRIBUTING.md
* Bump gitvalidation epoch
* Bump to v1.6.0-dev
* Handle conflict between volumes and --read-only-tmpfs
* Cirrus: Upload windows MSI release file
* conditionally send stdin on remote run
* Cirrus: VM Image accounting doc update
* Force a CNI Delete on refreshing containers
* Document the required varlink build args
* Update mac_client link
* Cirrus: Fail early on CI script unit test
* Unconditionally remove conmon files before starting
- Changelog for v1.6.0-rc2 (2019-09-24)
* Add release notes for new-in-RC2 changes
* system tests: run test: reenable and fix
* play kube: Only support pod kind in k8s yaml
* runtime: fix logic to disable SDNotify
* add list mount tests
* Make netns bind mount shared
* Add Kata Containers support
* rootless: Rearrange setup of rootless containers
* Document the 'system' event types for 'podman events'
* Cirrus: Add upload_snap to success dependencies
* Cirrus: Add snapcraft credentials
* Cirrus: Upload snap only on merges to master
* Cirrus: Push snap continuously
* exec: set HOME also with exec sessions
* execuser: look at the source for /etc/{passwd,group} overrides
* We need to convert libpod.conf files in user homedir for cgroupv2
* Cirrus: Temporarily disable testing on Ubuntu 19
* Cirrus: disable Evil Units in base-images
* Cirrus: Add latest ubuntu
* Cirrus: More podbot/success improvements
* Cirrus: Fix success script
* Cirrus: Update podbot credentials
* container: make sure $HOME is always set
* Move rootless and Mac to Tutorials page
* fix trivial type for event logger
* Support podman-remote help on windows
* Clean destination paths during mount generation
* tests: use crun package
* Add a note on systemd shortcomings in rootless containers
* support non-standard ssh port for remote-client
* Add links to the Mac tutorial in the main tutorial
* Vendor c/storage 1.13.3
* System-test: Temporarily disable 030-run
* Fix exit code failure
* exec: fix --preserve-fds
* networking: use --enable-sandbox if available
* Add 'relabel' to --mount options
* Bump Gitvalidation epoch
* Bump to v1.6.0-dev
* Unmounting a container that is already unmounted is OK
* Check for rootless before checking cgroups version in spec_test.
* Skip spec_test for rootless envs without cgroup v2.
* fix unit test to use Expect
* Cirrus: Prevent resident pollution
- Changelog for v1.6.0-rc1 (2019-09-16)
* Fix default to pause in podman cp
* Update release notes for v1.6.0
* Vendor Bulidah 1.11.2
* get runtime for podman-remote push earlier
* rootless: report the correct error
* Report errors when trying to pause rootless containers
* Do not support wildcards on cp
* Podman-remote run should wait for exit code
* Use exit code constants
* exec: Register resize func a bit later
* clean up after healthcheck execs
* enhance podman network rm
* Add podman icon to installer
* Test that PTYs created by 'podman exec --tty' have the ONLCR flag
* Prevent podman varlink socket fight
* Touch up some bad grammar in rootless doc
* linux: fix systemd with --cgroupns=private
* rootless: run pause process in its own scope
* rootless: automatically create a systemd scope
* utils: use the user session for systemd
* Support building Windows msi file
* Add cgroup v2 info to rootless tutorial
* fix podman sign signature store for rootless
* podman-remote image trust is broken
* Cirrus: Fix unnecessary setsebool
* Add further fields to StorageContainer
* Volume lookup needs to include state to unmarshal into
* Do not prune images being used by a container
* Add support for launching containers without CGroups
* add lint and manpage check to make validate
* Add `ContainerManager` annotation to created containers
* When first mounting any named volume, copy up
* Add function for looking up volumes by partial name
* hack/man_page_checker - improve diagnostics
* podman network create
* Fixup `util.GetRootlessConfigHomeDir` permission requirements
* Fixup Makefile for BSD systems, e.g. macOS
* Replace "podman" with "Podman"
* Add instructions for mounting named volumes from the host for `podman run`
* Add instruction for using fuse-overlayfs as the rootless storage driver
* Fix podman import bash completions
* Turn off journald in podmanimages on quay.io
* build: pass down the cgroup manager to buildah
* mac_client.md
* Ignore ENOENT on umount of SHM
* play kube: fix segfault
* Return information about mount_program (fuse-overlayfs)
* Ensure good defaults on blank c/storage configuration
* Correctly report errors on unmounting SHM
* Add ability for volumes with options to mount/umount
* Fixup README.md to give proper information
* Add volume state
* Change volume driver and options JSON tags
* Update buildah to v1.11.0
* Set TMPDIR to /var/tmp by default
* cli-flags: use a consistent format for <size><unit>
* Fix unit tests missing comparative for 'Expect'
* System tests: support for crun on f31/rawhide
* libpod: avoid polling container status
* Add test to verify noexec works with volume mounts
* Cirrus: Update e-mail -> IRC Nick table
* handle dns response from cni
* pkg/util: use rootless function to read additional users
* Enable hack/man-page-checker in CI
* rootless: detect user namespace configuration changes
* rootless.md: add systemd unit example
* docs: add note about failing rhel7 systemd on cgroups v2
* spec: provide custom implementation for getDevices
* spec: do not set devices cgroup when rootless
* rootless: bind mount devices instead of creating them
* Add command aliases to SYNOPSIS section
* Exclude podman-remote
* Cirrus: On success, add IRC nick mention to msg
* Fix table spacing
* Revert the descriptive text for podman-remote
* WIP - ignore man pages for commands besides podman
* podman-remote is not a subcommand
* Fix formatting and enable hack/man-page-checker
* Cirrus: Load base-image names indirectly
* Cirrus: Remove image_prune YAML-alias workaround
* Fix links to manpages
* Makefile: use go proxy
* man: events-logger → events-backend
* dont panic when using varlink commit and uppercase image names
* Add a test for the new suid/exec/dev options
* Fix addition of mount options when using RO tmpfs
* Allow :z and :Z with ProcessOptions
* Set base mount options for bind mounts from base system
* Don't double-process tmpfs options
* Add support for 'exec', 'suid', 'dev' mount flags
* Update buildah to current master
* Cirrus: Reimplement release archive + upload
* Readme: Links for automatic binary releases
* Re-add locks to volumes.
* image: remove unused Decompose method
* Temporarily disable systemd test for CGroups V2
* Add an integration test for systemd in a container
* clean up after remote build
* Cirrus: Block CNI use of google VPCs
* Add snap build test to success and release check
* Run `apt-get update` to avoid missing package while building
* Use snapcraft on Ubuntu 18.04 for libostree-dev
* Test build snap with Cirrus CI
* Update varlink doc and code
* podman cp: big set of system tests
* add iproute to podman in podman image
* Cirrus: Enable VM image housekeeping
* clean up after remote build
* Adjust name of Podman CNI network bridge
* Update cni config instructions
* Fix minor typos in podman-run docs.
* Fix link format in rootless_tutorial.md.
* Need to include command name in error message
* podman-remote: cp crashes
* generate systemd: support pods and geneartig files
* Dockerfile.fedora: install cni plugins package
* Add --digestfile option to push
* generate systemd: drop support for remote clients
* exec: run with user specified on container start
* Dockerfile*: fix build for CNI plugins
* Touchup README with Buildah build usage
* Dockerfile.*: bump CNI plugins commit
* Implement healthcheck for remote client
* networking: use firewall plugin
* Flake fix: build test timeout
* Fix error message on podman stats on cgroups v1 rootless environments
* test: enable all tests for crun
* test: fix return code check for missing workdir
* Fix directory pull image name for OCI images
* .cirrus.yml: use crun from git master
* libpod, pkg: lookup also for crun failures
* libpod.conf: add crun to runtime_supports_json
* containers, create: debug message on failed deletion
* libpod: still attempt to read the oci log file if not output
* Issue template update to include package info
* Allow customizing pod hostname
* add --cert-dir image sign
* Cirrus: Minor: Simplify crun test task
* Create framework for varlink endpoint integration tests
* Cirrus: Confirm networking more
* inclusion of podman network
* do not activate sd_notify support when varlink
* Remove --tmpfs size default
* cirrus: enable cgroups v2 tests with crun
* tests: skip pause tests if freezer is not available
* tests: enable run tests for cgroups v2
* tests: enable cpu tests for cgroups v2
* tests: enable memory tests for cgroups v2
* runtime: honor --runtime flag to build
* test: fix option name
* Add support & documentation to run containers with different file types
* Use GetRuntimeDir to setup auth.json for login
* add --pull flag for podman create&run
* Fix typos
* Update Varlink API documentation for volumes changes
* Swap 'volume inspect' frontend to use the new backend
* Implement backend for 'volume inspect'
- Changelog for v1.5.1 (2019-08-15)
* Add release notes for v1.5.1
* Set Pod hostname as Pod name
* tests for exit status on podman run --rm
* performance fix for podman events with large journalds
* pkg/cgroups: use DBUS session when rootless
* Fix play kube command in pod yaml
* removMergeDir from inspect result if not mounted
* Running Podman with a nonexistent hooks dir is nonfatal
* Cirrus: Install varlink on Ubuntu
* Cirrus: Install varlink on Fedora
* Add missing stage-packages in snapcraft.yaml.
* Add RHEL and SUSE to snap doc
* start groundwork for adding snap
* Add user systemd service and socket
* Small optimization - only store exit code when nonzero
* Fix container exit code with Journald backend
* Revert "Cirrus: Temp. workaround missing imgprune image"
* Homebrew installation in install.md
* varlink endpoint for containerstats requires root
* Adjust get_ci_vm.sh for substitution
* Cirrus: Add verification for cgroupv2 image
* Cirrus: Add experimental fedora VM image & test
* image: add user agent to Docker registry options
* Cirrus: Minor, use newer Ubuntu base image
* tests: disable some tests currently failing when not using runc
* containers: look also for 'file not found' in the error message
* cirrus: add tests with crun on Fedora 30
* rootless: cherry-pick runtime from the system configuration
* cirrus: install crun
* cmd: drop check for euid==0
* storage: drop unused geteuid check
* cmd, stats: fix check for rootless mode
* oci: drop check for euid==0
* build: use the configured runtime
* Adjust read count so that a newline can be added afterwards
* Fix incorrect use of realloc()
* Bump gitvalidation epoch
* Bump to v1.5.1-dev
* Fix a couple of errors descovered by coverity
* Test that restored container does not depend on the original container
* Fix up ConmonPidFile after restore
* Cirrus: Enable updates-testing repo for Fedora
* enable windows remote client
* implement 'make remotesystem'
* Squish a few tpyo nits in container.go doc
* Cirrus: Add Second partition for storage testing
- Changelog for v1.5.0 (2019-08-09)
* vendor github.com/containers/[email protected]
* Improve dns-search validation, empty domains now return an error
* fix create&run getting --authfile from cli
* Add release notes for v1.5.0
* Touch up build man page
* podman-container-runlabel(1): drop note
* make rmi messages more compatible with docker
* Add conmon probe to runtime construction
* fix copy change file owner if cp from container
* Vendor Buildah 1.10.1
* Allow the passing of '.' to --dns-search
* add make to make installs
* namespaces: fix Container() call
* Add a test for verifying ENTRYPOINT and CMD
* fix port early return
* Allow --ro=[true|false] with mount flag
* refer to container whose namespace we share
* add test to verify hostname is shared in a pod
* Properly share UTS namespaces in a pod
* When populating CMD, do not include Entrypoint
* systemd library conflict with seektail and addmatch
* pod top test: reenable
* cgroup: fix regression when running systemd
* Add invalid credentials fix to docs
* Revert "rootless: Rearrange setup of rootless containers"
* restore: correctly set StartedTime
* container stop: kill conmon
* honor libpod.conf in /usr/share/containers
* fix system df crashes on unnamed images
* Don't log errors to the screen when XDG_RUNTIME_DIR is not set
* various fixes for varlink endpoints
* add eventlogger to info
* Add handling for empty LogDriver
* Add rootless NFS and OverlayFS warnings to docs