Skip to content

Commit 0ec5181

Browse files
committed
changelog: 0.3.0
Signed-off-by: Michael Wan <[email protected]>
1 parent ab34fbe commit 0ec5181

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# CHANGELOG
22

3+
## 0.3.0 (2018-03-30)
4+
5+
### Runtime
6+
7+
* Add plugin framework which supports executing custom code at plugin points
8+
* Add daemon update API to update pouch daemon's labels, image-proxy and so on
9+
* Add support set OOM options for container
10+
11+
### Client
12+
13+
* Add info command to print detailed informations of pouch daemon
14+
* Add restart command for restarting an running container
15+
* Add resize command for resizing the size of TTY of a container
16+
* Add upgrade command for upgrading image and resources of a container
17+
* Add top command to print processes information inner a container
18+
* Add logs command to print logs of a container
19+
* Support formatted inspect image, network and volume informations
20+
21+
### Storage
22+
23+
* Add disk quota for rootfs of a container
24+
25+
### Kubernetes
26+
27+
* Sandbox/Container lifecycle management
28+
* Image management
29+
* Network management with CNI
30+
* Container streaming: exec/attach/portforward
31+
* Container logging
32+
* Security Context: RunAsUser, Apparmor,Seccomp,Sysctl
33+
34+
### Bugfix
35+
36+
* Fix volume can be removed when is being used by container
37+
38+
### Test
39+
40+
* add mock test for client package
41+
* add daemon test skeleton
42+
343
## 0.2.1 (2018-03-09)
444

545
### Network

version/version.go

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

33
// Version represents the version of pouchd.
4-
const Version = "0.3-dev"
4+
const Version = "0.3.0"
55

66
// BuildTime is the time when this binary of daemon is built
77
var BuildTime = "unknown"

0 commit comments

Comments
 (0)