forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
5918 lines (5831 loc) · 258 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 HEAD (2020-11-24):
* Set PATH env in systemd timer.
* Docker compat API fixes
* shell completions: remove usage of ShellCompDirectiveError
* more shell completion improvements
* Fix ip-range for classless subnet masks
* Bump github.com/containers/common from 0.27.0 to 0.29.0
* Add podman container ps command
* clarify ps(1) fallback of `podman top`
* APIv2 - create container sets wrong entrypoint
* Enable remote shell completion without a running endpoint
* Specify what the replace flag replaces in help text
* APIv2 - strip CAP_ prefix from capabilities in json
* Make c.networks() list include the default network
* Allow containers to --restart on-failure with --rm
* REST API v2 - list of images - mandatory Created attribute
* Allow multiple --network flags for podman run/create
* fix container cgroup lookup
* Make podman service log events
* vendor in containers/storage v1.24.1 containers/image v5.8.1
* Document containers.conf settings for remote connections
* Shell completion for podman ps and podman pod ps --filter
* Add alias for podman network rm -> remove
* add network connect|disconnect compat endpoints
* Fix sed regex to update version in version/version.go
* Github-Actions: Send e-mail on Cirrus cron failure
* Align the podman pod ps --filter behavior with podman ps
* podman-remote network rm --force is broken
* Remove build \!remote flags from test
- Changelog for v2.2.0-rc1 (2020-11-18):
* Add release notes for v2.2.0-RC1
* correct numbering typo
* Align the podman ps --filter behavior with docker
* Fix podman pod inspect show wrong MAC string
* Fix example for manifest push
* add network connect|disconnect compat endpoints
* Rename e2e test files to include _test.go suffix
* Client call to /play/kube incorrectly set tlsVerify
* Add an option to control if play kube should start the pod
* Swap out json-iterator for golang default
* Fix missing headers in `network ls`
* [CI:DOCS] fix an apostrophe nit in man page
* remove contrib/gate
* Remove some more excessive wrapping and stuttering
* Cleanup tutorials
* use container cgroups path
* Explain the relation between --pod and --network
* Make sure /etc/hosts populated correctly with networks
* logformatter: highlight timing results
* Bump Buildah to v1.18.0, c/storage to v1.24.0
* Cirrus: Invalidate static cache on VM image update
* Improve the shell completion api
* use lookaside storage for remote tests
* Bump k8s.io/apimachinery from 0.19.3 to 0.19.4
* Wrap missing container errors with container ID
* system tests: various
* Add support for volume ls --filter label=key=value
* Podman-remote build is getting ID twice
* [CI:DOCS] Touch up Podman description in man page menu
* Fix markdown tables on docs.podman.io
* short-name aliasing
* Set podman-auto-update.service Type=oneshot
* test for buildah version in container images.
* Add missing --now in systemctl start command
* Change podman build --pull=true to PullIfMissing
* Fix namespace flag parsing for podman build
* Add podman build --net alias for --network
* Refactor to use DockerClient vs APIClient
* Maintain consistent order of short and long flag names in docs
* Fix issues found with codespell
* Bump github.com/rootless-containers/rootlesskit from 0.11.0 to 0.11.1
* Install the new shell completion logic
* Add shell completion with cobra
* Vendor in some cobra PRs to improve the completion experience.
* Add support for network connect / disconnect to DB
* Ensure we do not double-lock the same volume in create
* Cleanup error reporting
* Cirrus: update VMs
* [CI:DOCS] Restore man page cross-checker
* Cirrus: Run validation tests in CI:DOCS mode
* Add podman(1) to the list of man pages on docs.podman.io
* Set default network driver for APIv2 networks
* Add tests to make sure podman-remote logs works correctly.
* Add anchors for flag names on docs.podman.io
* migrate play kube to spec gen
* Add example of fuse-overlay to podman system reset
* Bump github.com/containers/common from 0.26.3 to 0.27.0
* skip ipv6 e2e tests on rootless
* add e2e test for network with same subnet
* enable ipv6 network configuration options
* make network name uniq for dnsname tests
* network aliases for container creation
* system tests: skip journald tests on RHEL8
* Update podman build man page to match buildah bud man page
* Cirrus: Detailed CPU/Memory/Time runner.sh stats
* podman-pull.1.md: add example for pulling an image by hash
* podman-import.1.md: fix paragraph formatting
* podman-import.1.md: fix shell syntax
* Update CI tests to run python docker library against API
* Stop binding layer from changing line endings
* Add support for podman search --format json
* Add --log-driver to play kube
* Show error on bad name filter in podman ps
* Use CPP, CC and flags in dep check scripts
* Fix link to point at correct content
* fix: allow volume creation when the _data directory already exists
* rootless container creation settings
* fix: podman-system-service doc time is seconds
* Bump github.com/rootless-containers/rootlesskit from 0.10.1 to 0.11.0
* Update nix pin with `make nixpkgs`
* Use /tmp/podman-run-* for backup XDG_RUNTIME_DIR
* Only use container/storage/pkg/homedir.Get()
* Add support for mounting external containers
* Cirrus: Use F33beta VM image
* Cirrus: Simplify artifact collection
* Use ping from alpine
* Bump github.com/containers/storage from 1.23.8 to 1.23.9
* add a PR template
* Use regex for "pod ps" name filter to match "ps" behavior
* Add tip re. typical root cause of "Exec format error" to troubleshooting.md
* Add tests for network aliases
* Make volume filters inclusive
* [CI:DOCS]Add Urvashi to podman OWNERS
* Improve error messages from failing tests
* fedora rootless cpu settings
* Test $HOME when it's parent is bind mounted with --userns=keep-id
* Update README.md
* docs: Mention mounts.conf location for non-root users
* Add test/apiv2/rest_api tests to make target
* specgen: keep capabilities with --userns=keep-id
* specgen: fix check for root user
* specgen: add support for ambient capabilities
* Add better support for unbindable volume mounts
* Bump github.com/containers/storage from 1.23.7 to 1.23.8
* Use osusergo build tag for static build
* Change http ConnState actions between new and active
* Match build pull functionality with Docker's
* Centralize cores and period/quota conversion code
* specgen, cgroup2: check whether memory swap is enabled
* Fix dnsname when joining a different network namespace in a pod
* Bump Buildah to v1.17.0
* manifest list inspect single image
* Remove search limit since pagination support
* spec: protect against segfault
* [CI:DOCS] Fix broken CI readme links
* Improve setupSystemd, grab mount options from the host
* specgen: split cgroup v1 and cgroup v2 code
* specgen: fix error message
* When container stops, drop sig-proxy errors to infos
* Cirrus: Workaround F32 BFQ Kernel bug
* Stop excessive wrapping of errors
* Pod's that share the IPC Namespace need to share /dev/shm
* Fix the `--pull` flag to `podman build` to match Docker
* Restore --format table header support
* Create the default root API address path
* new "image" mount type
* Cirrus: Simplify setting/passing env. vars.
* Podman often reports OCI Runtime does not exist, even if it does
* rootless: improve error message if cannot join namespaces
* NewFromLocal can return multiple images
* libpod: clean paths before check
* move from docker.io
* Cirrus: Use google mirror for docker.io
* Cirrus: Always record runc/crun versions
* Ensure that attach ready channel does not block
* Add a way to retrieve all network aliases for a ctr
* Add pod, volume, network to inspect package
* Add network aliases for containers to DB
* Add test cases to cover podman volume
* Document how to enable CPU limit delegation
* Add more details about how CPU limits work
* set resources only when specified
* Improve the journal event reading
* build(deps): bump github.com/containers/common from 0.26.0 to 0.26.3
* Support hashed hostnames in the known_hosts file
* image list: check for all errors
* Yet another iteration on PR title plugin
* System tests: cleanup, make more robust
* pr update action: fix errors on master branch
* The cidfile should be created when the container is created
* auto update: mark it as non-experimental
* Add support for host keys for non-22 ports
* fix: podman-cp respects "--extract" flag
* add GitHub action to add non-main branch to PR title
* filter events by labels
* Bump github.com/spf13/cobra from 1.1.0 to 1.1.1
* Bump github.com/containers/buildah from 1.16.4 to 1.16.5
* src: nil check
* Don't error if resolv.conf does not exists
* src: add nil checks
* replace net_raw with setuid
* fix: /image/{name}/json returns RootFS layers
* APIv2 compatibility network connect|disconnect
* Tests: Check different log driver can work with podman logs
* podman create doesn't support creating detached containers
* Fix pull method selection
* set compat network driver default
* Add hostname to /etc/hosts for --net=none
* Add a Degraded state to pods
* Refactor podman to use c/common/pkg/report
* container create: record correct image name
* Add EOL to compat container logs
* save image remove signatures
* Switch use of Flags to Options
* Bump k8s.io/apimachinery from 0.19.2 to 0.19.3
* Fix handling and documentation of podman wait --interval
* Podman build should default to not usins stdin
* Tests: Fix common flakes, and improve apiv2 test log
* Retrieve network inspect info from dependency container
* refactor api compatibility container creation to specgen
* Fix ps port output
* Ensure that hostname is added to hosts with net=host
* Add a system test to verify --runtime is preserved
* Use runtime names instead of paths in E2E tests
* Re-create OCI runtimes by path when it is missing
* When given OCI runtime by path, use path as name
* fix: neutral value for MemorySwappiness
* Make invalid image name error more specific
* System tests: remove some misleading 'run's
* --tls-verify and --authfile should work for all remote commands
* Fix host to container port mapping for simple ranges
* Always add the dnsname plugin to the config for rootless
* Make man page headings more consistent
* Update podman-remote start --attach to handle detach keys
* Update podman-remote run to handle detach keys
* Bump github.com/containers/common from 0.24.0 to 0.26.0
* Fix panic when runlabel is missing
* Fix podman image trust show --raw output
* Fix podman-run man page heading
* Fix sorting issues in completions
* Add support for external container
* fix podman container exists and diff for storage containers
* Fix possible panic in libpod container restore
* Bump github.com/spf13/cobra from 1.0.0 to 1.1.0
* System test additions
* Setup HOME environment when using --userns=keep-id
* Setup HOME environment when using --userns=keep-id
* Fix indentation for `podman pod inspect`
* Cirrus: Execute docker-py tests on a VM
* Restore --format table support
* Convert Split() calls with an equal sign to SplitN()
* Bump github.com/onsi/gomega from 1.10.2 to 1.10.3
* Restore indent on JSON from `podman inspect`
* Enforce LIFO ordering for shutdown handlers
* alter compat no such image message
* Cirrus: Restore APIv2 Testing
* Cirrus: Ability to skip most tests for docs updates
* Restore --format: stats & pod ps
* Enable masking stop signals within container creation
* APIv2 tests: try again to fix them
* Add a shutdown handler package
* System tests: run with local podman, not remote
* Remove a note that the HTTP API is not yet stable.
* APIv2 tests: get them passing again
* Add support for resource limits to play kube
* Resolve #7860 - add time.RFC3339Nano into ContainerJSONBase
* Add more APIv2 tests for images: push, tag, untag, rmi and image tree.
* Include CNI networks in inspect output when not running
* Monitor for client closing stream
* pkg/spec: fix a confusing error message
* Search repository tags using --list-tags
* Fix the "err: cause" order of OCI runtime errors
* tests/e2e: Add Toolbox-specific test cases
* This PR allows users to remove external containers directly
* Fix documentation link and typo
* Restore --format table...
* Add support for resource cpu limit to generate kube
* Port V1 --format table to V2 podman
* BlobInfoCacheDir is set incorrectly when copying images
* Store cgroup manager on a per-container basis
* --format updates for images/diff.go
* add compatibility endpoint for exporting multiple images
* Restore --format 'table...' to commands
* Ports given only by number should have random host port
* Update nix pin with `make nixpkgs`
* add prerequisite section before building binaries
* newlines on all container detaches
* Cirrus: Fix obtaining a CI VM
* APIv2 compatibility rootless network fix
* Port commands to V2 --format 'table...'
* system tests: cleanup, and add more tests
* prevent unpredictable results with network create|remove
* Enable k8s configmaps as flags for play kube
* Attempt to turn on some more remote tests
* Use WaitWithDefaultTimeout in cleanup
* Move pod jobs to parallel execution
* Populate /etc/hosts file when run in a user namespace
* Cirrus: Fix running shellcheck locally
* Cirrus CI runner: refactor
* fix apiv2 /containers/$name/json return wrong value in `.Config.StopSignal`
* pkg/cgroups/createCgroupv2Path: nits
* Lowercase some errors
* Remove excessive error wrapping
* Support max_size logoptions
* Fixes remote attach and exec to signal IdleTracker
* Cirrus: Skip deep testing on branches
* logformatter: run on system tests & bindings
* Fix handling of CheckRootlessUIDRange
* Cirrus: Fix branch-validation failure
* Add TODO for adding CPU limit support
* Add support for resource memory limit to generate kube
* Fix podman-remote ps --ns broken
* fix closed the remote connection on pull causes service panic
* Add SELinux support for pods
* Cirrus: Implement podman automation 2.0
* compat: images/create: fix tag parsing
* Fix Podman logs reading journald
* Restore "table" --format from V1
* --rm option shold conflicts with --restart
* Bump github.com/containers/common from 0.23.0 to 0.24.0
* libpod: check the gid is present before adding it
* podman-remote does not support most of the global flags
* Correct to latest version
* Bump github.com/containers/buildah from 1.16.2 to 1.16.4
* image prune: remove all candidates
* spec: open fuse with --device .*/fuse
* rootless: use sync.Once for GetAvailableGids()
* rootless: move GetAvailableGids to the rootless pkg
* logformatter: add Synopsis at top of each page
* Podman containers/pods prune should throw an error if user adds args
* fix compat api privileged and entrypoint code
* Migrate container images to automation_images
* system test: untag all test
* remote: fix name and ID collisions of containers and pods
* Add additionalGIDs from users in rootless mode
* Fix some flakes in the e2e network tests.
* Update rootless_tutorial.md
* Volume prune should not pass down the force flag
* Support --http-proxy for remote builds
* fix: The container created by APIV2 has an incorrect Env and WorkDir
* misc fixes for f33 integration tests
* fix allowing inspect manifest of non-local image
* Distinguish userns vs containerized tests
* Don't disable Go modules when generating varlink
* Use local image if input image is a manifest list
* image look up: consult registries.conf
* pkg/registries: add a retiring note
* Attempt to test all Broken SkipIfRootless FIXME
* Make the e2e test network cleanup more robust.
* Fix ubuntu exec_test
* capabilities: always set ambient and inheritable
* libpod: bump up rootless-cni-infra to v3
* rootless-cni-infra v3: fix cleaning up DNS entries
* fix remote untag
* Make all Skips specify a reason
* Fix handling of remove of bogus volumes, networks and Pods
* We already set container=podman environment variable
* Refactor IdleTracker to handle StateIdle transitions
* System tests: add podman run --tz
* System tests: corner case for run --pull
* healthchecks: return systemd-run error
* Add X-Registry-Config support
* Gating-test fix: deal with new crun error msg
* Bump github.com/sirupsen/logrus from 1.6.0 to 1.7.0
* Apply suggestions from code review
* Adds missing . to README.md file.
* Ignore containers.conf sysctl when namespaces set to host
* System tests: reenable some skipped tests
* Journald log driver test
* fix for compatibility volume creation
* Add section about current differences
* Fix network remove for the podman remote client
* Fix podman network rm --force when network is used by a pod
* Remove SkipIfRootless if possible, document other calls
* Properly handle podman run --pull command
* Updating on supported restart policy
* Add support for slirp network for pods
* rootless: fix hang when newidmap is not installed
* Remove some SkipIfRootess flags from tests
* Bump github.com/containers/common from 0.22.0 to 0.23.0
* HTTP Attach: Wait until both STDIN and STDOUT finish
* build: honor --runtime setting
* remote load: check if input is directory
* stats: break out CLI options
* new endpoint: /libpod/containers/stats
* apiv2 container limit differ from docker-api
* system tests: helpers: safer parse_table
* system tests: new test for run --log-driver
* set interactive mode with compat create endpoint
* Allow filtering on pod label values
* Remove final v2remotefail failures
* Fix a bug where log-driver json-file was made no logs
* e2e tests: SkipIfRemote(): add a reason
* stats refactor
* Systemd should be able to run as rootless
* Bump github.com/containers/buildah from 1.16.1 to 1.16.2
* Examine all SkipIfRemote functions
* fix build with varlink
* Bump version in README to v2.1.0
* Include cgroup manager in `podman info` output
* Add Server header to API service responses
* Bump to v2.2.0-dev
* podman save: fix redirect of multi-images
* pkg/hooks: support all hooks
* Print nice error message when python is not installed
* add missing return for compat kill
* system tests: new tests
* Evict containers before removing via V2 API
* Cirrus: Add gpg2 to Ubuntu images
* Fix mismatch between log messages and behavior of libpod.LabelVolumePath.
- Changelog for v2.1.0 (2020-09-22):
* Update release notes for v2.1.0 Final Release
* Fix up attach tests for podman remote
* update stale bot
* [CI:DOCS] Add 'In Progress' note to CONTRIBUTING.md
* Restore 'id' stanza in pull results
* Fix podman image unmount to only report images unmounted
* libpod: bumps up rootless-cni-infra to 2
* stats: log errors instead of sending 500
* Fix incorrect parsing of create/run --volumes-from
* rootless-cni-infra: fix flakiness during bringing up lo interface
* Fix handling of podman-remote stop --ignore
* Refactor version handling in cmd tree
* Preserve groups in exec sessions in ctrs with --user
* Install bats as root
* Makefile: Fix broken libpodimage targets
* stats: detect closed client connection
* stats endpoint: write OK header once
* handle the play kube and generate kube for with restartPolicy
* fix the .Path and .Args when use the infra-command
* Update nix pin with `make nixpkgs`
* fix a typo of login.1.md
* Bump github.com/rootless-containers/rootlesskit from 0.10.0 to 0.10.1
* enable --iidfile for podman-remote build
* update github.com/docker/docker and relevant deps
* Make Go builds more consistent
* dependabot-dance: new tool for managing revendor PRs
* WIP: Fix remote logs
- Changelog for v2.1.0-rc2 (2020-09-17)
* Update release notes for Podman v2.1.0-RC2
* Fix play_kube_test deployment template
* fix missing completion in podman run
* Bump k8s.io/apimachinery from 0.19.1 to 0.19.2
* image list: return all associated names
* Add labels to a pod created via play kube
* Refactor remote pull to provide progress
* --mount: support arbitrary mount-argument order
* Fix podman pod create --infra-command and --infra-image
* Fix "rootless-cni-infra + runc fails with ENODEV"
* podman version and --version: fix format, exit
* Supports import&run--signature-policy
* Fix CI breakage due to PR collision
* [CI:DOCS]update owners file
* Refactor API version values
* Fix --systemd=always regression
* Correct HTTP methods for /containers/{id}/archive
* events endpoint: header: do not wait for events
* run/create: record raw image
* rootless CNI: extract env and cmd from image
* libpod: rootless CNI image: use quay
* move `rootless-cni-infra` image to quay.io
* vendor github.com/containers/image/v5@v5.6.0
* podman wait accept args > 1
* Usability: prevent "-l" with arguments
* Document the connection path for podman --remote
* Refactor API build endpoint to be more compliant
* pull types allow initial caps
* Determine if resolv.conf points to systemd-resolved
* Bump to v2.1.0-dev
* Fix completions for namespaces
- Changelog for v2.1.0-rc1 (2020-09-11)
* Add release notes for Podman v2.1.0-RC1
* Vendor in containers/buildah 1.16.1
* Vendor in containers/common v0.22.0
* system df: fix image-size calculations
* add @edsantiago to OWNERS file
* sort OWNERS file
* remote run: fix error checks
* Fix up errors found by codespell
* Document --read-only --rootfs requirements
* Force Attach() to send a SIGWINCH and redraw
* run_networking e2e test: add cleanup to some tests
* play/generate: support shareProcessNamespace
* system tests: cleanup
* allowed underscores to remain in name for YAML
* Add read-only mount to play kube
* Add auth.json(5) link to login/logout docs
* libpod: read mappings when joining a container userns
* Make an entry in /etc/group when we modify /etc/passwd
* podman container runlabel should pull the image if it does not exist
* Bump k8s.io/apimachinery from 0.19.0 to 0.19.1
* vendor containers/storage v1.23.5
* remote run: consult events for exit code
* Cirrus: Obsolete CI:IMG process & related files
* Fix podman container runlabel --display
* Make oom-score-adj actually work
* compat kill: only wait for 0 signal and sigkill
* remote kill: don't wait for the container to stop
* Fix podman ps -l
* generate systemd: catch `--name=foo`
* Fix podman build --logfile
* fix APIv2 pods top of non-exist pod gets two response value
* Extend bash completion to cover new flags
* Update man page of `manifest add`
* manifest push: handle cert-dir flag
* Extend flags of `manifest add`
* Show c/storage (Buildah/CRI-O) containers in ps
* rootless: support `podman network create` (CNI-in-slirp4netns)
* add contrib/rootless-cni-infra
* [CI:DOCS] Update remote tutorials
* Don't setup the Image/ContainerEngine when calling a cmd with subcmds
* Makefile: add cross compile targets for more arches
* Migrate away from docker.io
* podman stop: do not cleanup for auto-removal
* Bump github.com/onsi/gomega from 1.10.1 to 1.10.2
* support multi-image (docker) archives
* Fix typo in the remove network api doc
* APIv2 Add network list filtering
* Bump github.com/onsi/ginkgo from 1.14.0 to 1.14.1
* make image parent check more robust
* Fix unconfined AppArmor profile usage for unsupported systems
* Bump github.com/containers/storage from 1.23.2 to 1.23.4
* Add global options --runtime-flags
* [CI:DOCS] Add macos build to ci
* Fix system df inconsistent
* [CI:DOCS] Add note on run image fuse problem - try 2
* WIP: update VM images
* APIv2 add generate systemd endpoint
* We should not be mounting /run as noexec when run with --systemd
* Bump github.com/gorilla/mux from 1.7.4 to 1.8.0
* Don't create ~/.config after removing storage.conf
* Update master with release notes for v2.0.6
* APIv2 test: add more tests for containers
* Ensure rootless containers without a passwd can start
* use crio runc on CICID ubuntu
* bindings: reenable flaky(?) pause/unpause test
* handle play kube with pod.spec.hostAliases
* Bump github.com/google/uuid from 1.1.1 to 1.1.2
* Bump k8s.io/api from 0.18.8 to 0.19.0
* play kube: handle Socket HostPath type
* Small tweaks to readme scope section
* Update Master to reflect v2.0.5 release
* fix panic when checking len on nil object
* Add support for variant when pulling images
* Document override-arch and override-os
* Delete prior /dev/shm/*
* Don't remove config files with podman system reset
* Just use `rm` for helper command to remove storage
* Bump github.com/containernetworking/plugins from 0.8.6 to 0.8.7
* Fix log level case regression
* Use environment from containers.conf
* Bump github.com/containers/conmon
* Bump github.com/gorilla/schema from 1.1.0 to 1.2.0
* Bump k8s.io/apimachinery from 0.18.8 to 0.19.0
* abi: trim init command
* [CI:DOCS] Switch more references from libpod to podman
* Switch to containers/common for seccomp
* Fix up some error messages
* Ensure pod REST API endpoints include ctr errors
* Update c/storage to v1.23.2
* BATS: fix corner case in --userns=keep-id test
* [CI:DOCS] Update podman-remote docs
* Send HTTP Hijack headers after successful attach
* fix podman generate kube with HostAliases
* [CI:DOCS] Making docs build on mac
* Remove test comment for now succeeding tests
* Update vendor of buildah to latest code
* fix apiv2 will create containers with incorrect commands
* [CI:DOCS] fix swagger api docs
* Add missing autocomplete
* Update nix pin with `make nixpkgs`
* podman: add option --cgroup-conf
* vendor: update opencontainers/runtime-spec
* In podman 1.* regression on --cap-add
* error when adding container to pod with network information
* fix /libpod/pods/json returns null when there are no pods
* fix pod creation with "new:" syntax followup + allow hostname
* [CI:DOCS] Include Go bindings tutorial
* Unmount c/storage containers before removing them
* Cirrus: special-case CI colon-IMG and colon-DOCS only in subject
* Add support for --connection
* system tests: enable more remote tests; cleanup
* Note port publishing needs in pods for create/run
* Cirrus: Increase integration-testing timeout
* Bump github.com/containers/image/v5 from 5.5.1 to 5.5.2
* generate systemd: quote arguments with whitespace
* Ensure DefaultEnvVariables is used in Specgen
* Support sighup reload configuration files
* fix podman version output to include git commit and builttime
* Don't limit the size on /run for systemd based containers
* abi: fix detection for systemd
* fix podman create/run UTS NS docs
* Remove help/usage from --remote pre-check
* flake fix: podman image trust
* e2e tests: use actual temp dirs, not "/tmp/dir"
* Re-disable sdnotify tests to try to fix CI
* Clean up pods before returning from Pod Stop API call
* Use `bash` binary from env instead of /bin/bash for scripts
* Wait for reexec to finish when fileOutput is nil
* Bump k8s.io/api from 0.18.6 to 0.18.8
* Bump github.com/containers/storage from 1.21.2 to 1.23.0
* podman support for IPv6 networks
* Add pointer to troubleshooting in issue template
* Bump k8s.io/apimachinery from 0.18.6 to 0.18.8
* system tests: enable sdnotify tests
* Ensure pod infra containers have an exit command
* podman.service: use sdnotiy
* run, create: add new security-opt proc-opts
* Add support for setting the CIDR when using slirp4netns
* add event for image build
* podman-remote fixes for msi and client
* podman save use named pipe
* Change /sys/fs/cgroup/systemd mount to rprivate
* Add parameter verification for api creation network
* add xz as a recommended pkg
* Makefile: use full path for ginkgo
* Replace deepcopy on history results
* Fix hang when `path` doesn't exist
* Cross-reference *.rst files too
* Ensure correct propagation for cgroupsv1 systemd cgroup
* Man pages: assert that subcommands are in order
* Use set for systemd commands
* Enable systemd mode for /usr/local/sbin/init
* Allow specifying seccomp profiles for privileged containers
* Update nix pin with `make nixpkgs`
* Add the Status field in the ps --format=json
* Add missing pages for docs.podman.io
* Align images with Buildah
* Error pass through for more accurate error reporting
* remove --latest for all remote commands
* Remove TEST_REMOTE_CLIENT from RCLI
* Fix handling of working dir
* Default .Repository and .Tag values to <none>
* generate systemd: fix error handling
* Do not use image CMD if user gave ENTRYPOINT
* Unconditionally retrieve pod names via API
* system tests: podman-remote, image tree
* [CI:DOCS] BZ1860126 - Fix userns defaults in run man page
* changes to support outbound-addr
* image list: speed up
* fix podman logs --tail when log is bigger than pagesize
* [CI:DOCS] Update podmanimages README.md
* Ensure that exec errors write exit codes to the DB
* podman-remote send name and tag
* Refactor parsing to not require --remote to be first
* Handle podman-remote run --rm
* correct go-binding key for volumes
* HACK HACK try debugging build
* Retry pulling image
* fix bug podman sign storage path
* validate fds --preserve-fds
* Remove duplicated code
* Improve error message when creating a pod/ctr with the same name
* podman: support --mount type=devpts
* rootless: system service joins immediately the namespaces
* docker-compose uses application/tar
* Missing return after early exit
* Ensure WORKDIR from images is created
* Bump to Buildah 1.16.0-dev in upstream
* Do not set host IP on ports when 0.0.0.0 requested
* Reenable remote system tests
* implement the exitcode when start a container with attach
* Install auto-update services for users
* Fix test failure regarding unpackaged files.
* Install auto-update systemd service and timer.
* podman.service: drop install section
* Remove some unnecessary []byte to string conversions
* Speedup static build by utilizing CI cache on `/nix` folder
* API returns 500 in case network is not found instead of 404
* Change recommended systemd unit path for root.
* Update master README and release notes for v2.0.4
* Ensure libpod/define does not include libpod/image
* Fix podman service --valink timeout
* Add versioned _ping endpoint
* fix pod creation with "new:" syntax
* Cirrus: Utilize freshly built images
* Cirrus: Install golang 1.14 on Ubuntu
* Cirrus: Add python packages to images
* Make `search --no-trunc` work for podman remote
* API: Fix 'podman image search` missing description
* Add test case for description being present in search result
* Fix close fds of exec --preserve-fds
* volumes: do not recurse when chowning
* Handle single character images
* rootless: add a check for the host id included in the range
* fix swapped mem_usage/percent fields
* rootless: child exits immediately on userns errors
* rootless: do not ignore errors if mappings are specified
* add {{.RunningFor}} placeholder in ps --format
* fix close fds of run --preserve-fds
* fix podman system df format error
* Ensure that 'rmi --force' evicts Podman containers
* System tests: new system-df and passwd tests
* Binding the same container port to >1 host port is OK
* Return NamesHistory when returning remote images
* Don't crash when giving bogus format commands
* bindings: skip flaky pause/unpause test
* logformatter: more libpod-podman fallout
* [CI:DOCS] apiv2 fix volumes not inculded field
* Fix `podman image search` missing description
* Specifying --ipc=host --pid=host is broken
* Fix building from http or '-' options
* System tests: add environment, volume tests
* Add podman image mount
* Switch all references to github.com/containers/libpod -> podman
* compat/info.go: TrimPrefix(CGroupsVersion, "v")
* Bump github.com/rootless-containers/rootlesskit from 0.9.5 to 0.10.0
* add newline to output in error message
* Cleanup handling of podman mount/unmount
* Corrects typo in the name of the Linux package shadow-utils.
* When chowning we should not follow symbolic link
* Update transfer doc
* test/apiv2: add a simple events test
* API events: fix parsing error
* CI - various fixes
* Remove 'experimental' from API doc
* replace the html/template package with text/template
* update configuration for rootless podman
* Fix exit code example in podman-run.1.md
* Make changes to /etc/passwd on disk for non-read only
* Update release notes and README on master for v2.0.3
* Update system.rst
* The `podman start --attach` command should not print ID
* Refactor container config
* Fix typos on documentation 'What is Podman' page
* CI: fix rootless permission error
* Bump github.com/containers/common from 0.17.0 to 0.18.0
* [WIP] Refactor podman system connection
* Publish IP from YAML (podman play kube)
* Turn on a bunch more remote tests
* logformatter: handle podman-remote
* Cirrus: Switch to freshly built image
* Cirrus: Add packages that provide htpasswd
* Cirrus: Ensure GOPATH is properly set during image-builds
* CI: attempt to fix flake in login test
* Support default profile for apparmor
* Bump github.com/containers/storage from 1.21.1 to 1.21.2
* Bump github.com/containers/common from 0.16.0 to 0.17.0
* Enable a bunch of remote tests
* Enable --remote flag
* Add --umask flag for create, run
* fix play kube doesn't override dockerfile ENTRYPOINT
* Do not print an error message on non-0 exec exit code
* Document proxy env var precedence
* BATS help-message test: improve diagnostics
* Add noop function disable-content-trust
* Fix Generate API title/description
* docs: Clarify how env var overriding works
* Update the README to reflect the libpod move
* make localunit: record coverage
* unit tests: root check
* docs: Fix formatting mistake
* logformatter: update MAGIC BLOB string
* Switch references from libpod.conf to containers.conf
* BATS tests: more resilient remove_same_dev_warning
* Add support for overlay volume mounts in podman.
* Re-enable a generate kube test that failed on Ubuntu
* events endpoint: backwards compat to old type
* podman.service: set type to simple
* podman.service: set doc to podman-system-service
* podman.service: use default registries.conf
* podman.service: use default killmode
* podman.service: remove stop timeout
* events endpoint: fix panic and race condition
* systemd: symlink user->system
* fix: system df error when an image has no name
* document CAP_SYS_ADMIN required for systemd PrivateNetwork
* Cleanup nix derivation for static builds
* Used reference package with errors for parsing tag
* abi: set default umask and rlimits
* docs: document the new slirp4netns options
* network, slirp4netns: add option to allow host loopback
* libpod: pass down network options
* The compat create endpoint should 404 on no such image
* Bump github.com/containers/common from 0.15.2 to 0.16.0
* Bump k8s.io/api from 0.18.5 to 0.18.6
* Bump k8s.io/apimachinery from 0.18.5 to 0.18.6
* Bump github.com/containers/conmon
* vendor golang.org/x/text@v0.3.3
* Fix `podman system connection` panic
* Preserve passwd on container restart
* Fix & add notes regarding problematic language in codebase
* Error on rootless mac and ip addresses
* allow switching of port-forward approaches in rootless/using slirp4netns
* Fix "Error: unrecognized protocol \"TCP\" in port mapping"
* APIv2 tests: fix race condition causing CI flake
* system tests: check for masked-device leaks
* system tests: new tests for run, exec
* Bump github.com/uber/jaeger-client-go
* Bump github.com/containers/storage from 1.21.0 to 1.21.1
* Fix lint
* Add SystemdMode to inspect for containers
* play-kube: add suport for "IfNotPresent" pull type
* Mask out /sys/dev to prevent information leak from the host
* Fix handling of entrypoint
* docs: user namespace can't be shared in pods
* When determining systemd mode, use full command
* Populate remaining unused fields in `pod inspect`
* Include infra container information in `pod inspect`
* [CI:DOCS]Do not copy policy.json into gating image
* Fix systemd pid 1 test
* Remove outdated seccomp policy
* Correctly print STDOUT on non-terminal remote exec
* Pids-limit should only be set if the user set it
* Don't setup AppArmor provile for privileged pods
* Ensure sig-proxy default is propagated in start
* Fix container and pod create commands for remote create
* version/info: format: allow more json variants
* Bump github.com/containers/storage from 1.20.2 to 1.21.0
* Fix: Correct connection counters for hijacked connections
* Fix: Hijacking v2 endpoints to follow rfc 7230 semantics
* Remove hijacked connections from active connections list
* Remove all instances of named return "err" from Libpod
* Vendor in new version of Buildah
* Remove dependency on github.com/opencontainers/libpod/configs
* logs: enable e2e tests
* log API: add context to allow for cancelling
* Fix saving in oci format
* APIv2:fix: Get volumes from `Binds` when creating
* fix API: Create container with an invalid configuration
* Update release notes on Master for v2.0.2
* Minor: Remove two inaccurate comments
* Cirrus: Rotate keys post repo. rename
* fix race condition in `libpod.GetEvents(...)`
* Add username to /etc/passwd inside of container if --userns keep-id
* Add support for Filter query parameter to list images api
* Disable mount tests as rootless
* Change buildtag for remoteclient to remote for testing
* BATS system tests for new sdnotify
* Implement --sdnotify cmdline option to control sd-notify behavior
* Fix bug where `podman mount` didn't error as rootless
* move go module to v2
* Bump github.com/onsi/ginkgo from 1.13.0 to 1.14.0
* auto-update: clarify systemd-unit requirements
* podman ps truncate the command
* Set engine env from common config
* Fix issue #6803 Container inspect endpoint returns null for NetworkSettings/Ports
* Bump imagebuilder to v1.1.6 in upstream
* Add --tz flag to create, run
* Print errors from individual containers in pods
* stop podman service in e2e tests
* Fix `system service` panic from early hangup in events
* Bump github.com/opentracing/opentracing-go from 1.1.0 to 1.2.0
* APIv2:fix: Handle docker volume force as expected
* APIv2: Add docker compatible volume endpoints
* Bump k8s.io/api from 0.18.4 to 0.18.5
* test.apiv2: add testing for container initializing
* Bump github.com/containers/common from 0.14.3 to 0.15.1
* Created timestamp returned by imagelist should be in unix format
* APIv2 tests: usability: better test logging
* docs: recommend alternatives to podman inspect
* utils: fix parsing of cgroup with : in the name
* Bump k8s.io/apimachinery from 0.18.4 to 0.18.5
* Set TMPDIR to /var/tmp by default if not set
* fix: Don't override entrypoint if it's `nil`
* Add a note on the APIs supported by `system service`
* test: add tests for --user and volumes
* container: move volume chown after spec generation
* libpod: volume copyup honors namespace mappings
* Set console mode for windows
* systemd system test: run auto-update
* Allow empty host port in --publish flag
* Fix a bug with APIv2 compat network remove to log an ErrNetworkNotFound instead of nil
* Fixes --remote flag issues
* Ensure umask is set appropriately for 'system service'
* system tests: add pod, inspect testing
* specgen: fix order for setting rlimits
* Revert sending --remote flag to containers
* vendor github.com/containers/common@v0.14.3
* podman: add new cgroup mode split
* systemd generate: allow manual restart of container units in pods
* e2e inspect: HostConfig.SecurityOpt
* generate systemd: improve pod-flags filter
* Print port mappings in `ps` for ctrs sharing network
* Fix python dockerpy tests
* Add support for dangling filter to volumes
* Friendly amendment for pr 6751
* Set syslog for exit commands on log-level=debug
* Add containers.conf default file for windows and MAC Installs
* Docs: consistency between man / --help
* utils: drop default mapping when running uid!=0
* podman run/create: support all transports
* Fix inspect to display multiple label: changes
* podman untag: error if tag doesn't exist
* Set stop signal to 15 when not explicitly set
* libpod: specify mappings to the storage
* APIv2: Return `StatusCreated` from volume creation
* APIv2:fix: Remove `/json` from compat network EPs
* Fix ssh-agent support
* APIv2:doc: Fix swagger doc to refer to volumes
* BATS tests: new too-many-arguments test
* Reformat inspect network settings
* Add podman network to bash command completions
* Fix typo in manpage for `podman auto update`.
* Add tests for --privileged with other flags
* Add JSON output field for ps
* V2 podman system connection
* wip
* system tests: invoke with abs path to podman
* image load: no args required
* system tests: new rm, build tests
* Fix conflicts between privileged and other flags
* Re-add PODMAN_USERNS environment variable
* libpod/containers/json: alias last -> limit
* Bump required go version to 1.13
* Makefile: allow customizable GO_BUILD
* Add explicit command to alpine container in test case.
* "pod" was being truncated to "po" in the names of the generated systemd unit files.
* Use POLL_DURATION for timer
* rootless_linux: improve error message
* Stop following logs using timers
* Add container name to the /etc/hosts within the container
* Update release notes for v2.0.0
* Update README to reflect that v2.0.0 has been released
* Bump master to v2.1.0-dev following release of v2.0
* Fixes #6670
* Correct logic for demux'ing channels
* Account for non-default port number in image name
* correct the absolute path of `rm` executable
* Poll on events for file reading
* Add --preservefds to podman run
* podman images --format json: pretty print
* Fix podman build handling of --http-proxy flag
* search: allow wildcards
* CI: force registry:2.6
* Fix remote docs
* Allow recursive dependency start with Init()
* Bump k8s.io/apimachinery from 0.18.3 to 0.18.4
* unflake rmi tests
* Bump k8s.io/api from 0.18.3 to 0.18.4
* Bump go.etcd.io/bbolt from 1.3.4 to 1.3.5
* Podman system service is no longer experimental
* Handle dropping capabilties correctly when running as non root user
* Don't ignore --user flag in rootless --userns keepid
* Bump to v2.0.0-dev
* Makefile: install.varlink needs to create dirs
* Do not share container log driver for exec
- Changelog for v2.0.0-rc7 (2020-06-17)
* Bump Buildah to v1.15.0
* Move logs functionality to separate file for APIv2
* generate systemd: `ExecStopPost` for all units
* Revert #6591 to fix issue with failed tests
* vendor github.com/containers/image/v5@v5.5.1
* Add support for the unless-stopped restart policy
* fix misc remote build issues
* "streaming output" logs test: fix flake
* Fix handling of old oci hooks
* [CI:DOCS] Fixes #6548
* Re-add resource limit warnings to Specgen
* Add <return> to lines returen in podman-remote logs
* Vendor containers/common v0.14.0
* Show Anon, GID, UID in v2 volumes
* Fix podman inspect on overlapping/missing objects
* Fix --init and --init-path
* Fix podman-remote images
* Revert "Change Varlink systemd unit to use `system service`"
* Bump github.com/containers/conmon
* handlers/compat: fix lint error
* auto-update: use image's arch
* APIv2 tests: Add some tests for podman pods
* Add deprecated message to varlink command
* Handle errors on attach properly
* fix podman cp can create an extra directory level
* Remove redundant break in for loop.
* Bump to v2.0.0-dev
* generate systemd: `--replace` on named containers/pods
* pod create --replace
* {create,run} --replace
* Bump github.com/uber/jaeger-client-go
* Bump github.com/onsi/ginkgo from 1.12.3 to 1.13.0
* Adds more docker py test
* The string field of Built was missing from server
* Add some additional fields to imageinspect
* Do not print error message when container does not exist
* Changed from t.StopAtEOF() to t.Stop() and added error check
* Fix -f logs to stop when a container exits
* Add the missing return
* Fix -f logs follow with stopped container
- Changelog for v2.0.0-rc6 (2020-06-15)
* Change Varlink systemd unit to use `system service`
* Turn on More linters
* Do not default WorkingDir to / on client side
* Reassemble filters on the server side
* Bump github.com/containers/common from 0.13.0 to 0.13.1
* [CI:DOCS] Fix carriage returns in API v2 header
* Fix missing code during in_podman build
* update document login see config.json as valid
* [CI:DOCS] Add quick start directions to APIv2 Dock
* Fix builds for RDO
* podman: create scope only if --cgroup-manager=systemd
* libpod: fix check for slirp4netns netns
* e2e: sanity check --infra-conmon-pidfile
* generate systemd: wrap pod/ctr lookup errors
* docs: create/run fix --pod-id-file description
* generate systemd: create pod template
* generate systemd: refactor
* add (*Pod).CreateCommand()
* generate systemd: rename source files
* generate systemd: rephrase lookup error
* pod create: add `--infra-conmon-pidfile`
* generate systemd: rename "cid" to "ctr-id"
* container-{create,run}: add `--pod-id-file`
* podman-pod{rm,start,stop}: support --pod-id-file
* systemd/generate: remove unused infra container field