Skip to content

Commit 80612fb

Browse files
committed
Bump to v0.7.4
Signed-off-by: Matthew Heon <[email protected]>
1 parent f258e43 commit 80612fb

File tree

2 files changed

+76
-1
lines changed

2 files changed

+76
-1
lines changed

changelog.txt

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,78 @@
1+
- Changelog for v0.7.4 (2018-07-27)
2+
* Add pod pause/unpause
3+
* Fix up docker compatibility messages
4+
* Update vendored version of runc,buildah,containers/image
5+
* Refactored method of getting pods
6+
* Fix godoc comment in pkg/netns
7+
* Fix handling of Linux network namespaces
8+
* Update containernetworking/plugins to current master
9+
* Cleanup descriptions and help information
10+
* Skip seccomp-dependent tests on non-Linux
11+
* Use the Linux version BoltState.getContainerFromDB on all platforms.
12+
* Split parseNetNSBoltData from BoltState.getContainerFromDB
13+
* Use testify/require in a few places to avoid panics in tests
14+
* Skip unit tests which require storage when not running as root
15+
* Don't pollute the build output with failures to build checkseccomp
16+
* Remove cmd/podman/user.go
17+
* double papr timeout for all ci tests
18+
* vendor latest containers/psgo
19+
* Vendor latest container/storage to fix overlay mountopt
20+
* Add pod kill
21+
* Added pod restart
22+
* Added pod.Restart() functionality to libpod.
23+
* Add a mutex to BoltDB state to prevent lock issues
24+
* Clear variables used to store options after parsing for every volume
25+
* Clean up pylint warnings and errors
26+
* podman: allow to specify the IPC namespace to join
27+
* podman: allow to specify the UTS namespace to join
28+
* podman: allow to specify the PID namespace to join
29+
* podman: allow to specify the userns to join
30+
* network: support ns: prefix to join existing namespace
31+
* spec: allow container:NAME network mode
32+
* Update comments in BoltDB and In-Memory states
33+
* Add an E2E test to verify basic namespace functionality
34+
* Add libpod namespace to config
35+
* Add missing runtime.go lines to set namespace
36+
* Address first round of review comments
37+
* Set namespace for new pods/containers based on runtime
38+
* Add --namespace flag to Podman
39+
* Update documentation for the State interface
40+
* Ensure pods are part of the set namespace when added
41+
* Enforce namespace checks on container add
42+
* Add tests for state namespacing
43+
* Add namespaces to in memory state
44+
* Untested implementation of namespaced BoltDB access
45+
* Add constraint that dependencies must be in the same ns
46+
* Add namespaces and initial constraints to database
47+
* Add container and pod namespaces to configs
48+
* Fix varlink API usage of psgo
49+
* Update issue template to point build bugs at buildah
50+
* We don't currently support --mac-address
51+
* Vendor in latest containers/psgo code
52+
* Update container Mounted() and Mountpoint() functions
53+
* [WIP] Refactor and simplify python builds
54+
* AppArmor: runtime check if it's enabled on the host
55+
* Add format descriptors infor to podman top
56+
* Fix error handling in pod start/stop.
57+
* docs/podman-top: fix typo and whitespace
58+
* Use the result of reference.Parse when checking for digests.
59+
* Make refNamesFromPossiblyUnqualifiedName independent from Image
60+
* Make Image.HasShaInInputName to an independent local function
61+
* Split createNamesToPull into ref{Names,Pairs}FromPossiblyUnqualifiedName
62+
* Rename local variables in Runtime.pullRefPairsFromRefNames
63+
* Split Runtime.pullRefPairsFromRefNames from Image.createNamesToPull
64+
* Rename nameToPull to pullRefName
65+
* Rename pullStruct to pullRefPair
66+
* Replace optional nameToPull.shaPullName with mandatory dstName
67+
* Introduce nameToPull, move shaPullName in there
68+
* Split normalizeTag from Image.TagImage
69+
* Remove Image.isShortName
70+
* Inline getTags into its only user
71+
* Add unit tests for imageParts
72+
* Add OnBuild and usernamespace test to baseline
73+
* Bump gitvalidation epoch
74+
* Bump to v0.7.4-dev
75+
176
- Changelog for v0.7.3 (2018-07-20)
277
* Update psgo vendor
378
* Podman load/tag/save prepend localhost when no repository is present

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// Version is the version of the build.
4-
const Version = "0.7.4-dev"
4+
const Version = "0.7.4"

0 commit comments

Comments
 (0)