Skip to content

Commit fb0e3fc

Browse files
authored
Merge pull request kubernetes-sigs#218 from feiskyer/version
Bump version to 1.0.0-alpha.0
2 parents 2c29c5c + eb43131 commit fb0e3fc

File tree

3 files changed

+43
-4
lines changed

3 files changed

+43
-4
lines changed

CHANGELOG.md

+41-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<!-- TOC -->
22

3+
- [v1.0.0-alpha.0](#v100-alpha0)
4+
- [CRI validation testing (critest)](#cri-validation-testing-critest)
5+
- [CRI CLI (crictl)](#cri-cli-crictl)
36
- [v0.2](#v02)
4-
- [CRI validation testing (critest)](#cri-validation-testing-critest)
5-
- [CRI CLI (crictl)](#cri-cli-crictl)
7+
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
8+
- [CRI CLI (crictl)](#cri-cli-crictl-1)
69
- [v0.1](#v01)
710
- [Features](#features)
811
- [CRI validation testing](#cri-validation-testing)
@@ -12,6 +15,42 @@
1215

1316
<!-- /TOC -->
1417

18+
# v1.0.0-alpha.0
19+
20+
cri-tools v1.0.0-alpha.0 is mainly focus on UX improvements, including make crictl command more user friendly and add more subcommands. It also updates container runtime interface (CRI) to kubernetes v1.9 and fixes bugs in validation test suites.
21+
22+
### CRI validation testing (critest)
23+
24+
- [#164](https://github.com/kubernetes-incubator/cri-tools/pull/164) Fix security context test to not rely on `/etc/hosts`
25+
- [#165](https://github.com/kubernetes-incubator/cri-tools/pull/165) Validate IPv4 only for port mapping tests
26+
- [#196](https://github.com/kubernetes-incubator/cri-tools/pull/196) Fix privileged container validation by replacing `ip link` with `brctl addbr` command
27+
- [#197](https://github.com/kubernetes-incubator/cri-tools/pull/197) Fix hostIPC validation to support old ipcmk versions
28+
- [#199](https://github.com/kubernetes-incubator/cri-tools/pull/199) [#201](https://github.com/kubernetes-incubator/cri-tools/pull/201) Fix container logs validation
29+
- [#200](https://github.com/kubernetes-incubator/cri-tools/pull/200) Add SELinux validation tests
30+
31+
### CRI CLI (crictl)
32+
33+
- [#156](https://github.com/kubernetes-incubator/cri-tools/pull/156) Fix empty RepoTags handling for `images` command
34+
- [#163](https://github.com/kubernetes-incubator/cri-tools/pull/163) Add `--digest` option to `images` command
35+
- [#167](https://github.com/kubernetes-incubator/cri-tools/pull/167) Add verbose for `status` command
36+
- [#171](https://github.com/kubernetes-incubator/cri-tools/pull/171) Sort results by creation time for `ps`, `sandboxes` and `images` commands
37+
- [#174](https://github.com/kubernetes-incubator/cri-tools/pull/174) Support select sandboxes by name for `sandboxes` and other commands
38+
- [#178](https://github.com/kubernetes-incubator/cri-tools/pull/178) [#190](https://github.com/kubernetes-incubator/cri-tools/pull/190) Replace golang json with `protobuf/jsonpb` library
39+
- [#182](https://github.com/kubernetes-incubator/cri-tools/pull/182) Fix stdout and stderr for `attach` and `exec` command
40+
- [#183](https://github.com/kubernetes-incubator/cri-tools/pull/183) Add created time to `sandboxes` command
41+
- [#186](https://github.com/kubernetes-incubator/cri-tools/pull/186) Use kubelet's log library instead of a copied one
42+
- [#187](https://github.com/kubernetes-incubator/cri-tools/pull/187) Add image tag and attempt to `ps` command
43+
- [#194](https://github.com/kubernetes-incubator/cri-tools/pull/194) Add `config` command
44+
- [#217](https://github.com/kubernetes-incubator/cri-tools/pull/217) Add `--latest` and `--last` options to `ps` and `sandboxes` commands
45+
- [#202](https://github.com/kubernetes-incubator/cri-tools/pull/202) [#203](https://github.com/kubernetes-incubator/cri-tools/pull/203) Add `--all`, `--latest`, `--last` and `--no-trunc` options to `ps` command
46+
- [#205](https://github.com/kubernetes-incubator/cri-tools/pull/205) Improve logs command and add `--timestamps` and `--since` options
47+
- [#206](https://github.com/kubernetes-incubator/cri-tools/pull/206) Add verbose debut output to `inspect` and `inspects` commands
48+
- [#207](https://github.com/kubernetes-incubator/cri-tools/pull/207) Sort flags for all commands
49+
- [#209](https://github.com/kubernetes-incubator/cri-tools/pull/209) Add `stats` command
50+
- [#211](https://github.com/kubernetes-incubator/cri-tools/pull/211) Rewrite timestamps in container status and sandbox status to make them more user friendly
51+
- [#213](https://github.com/kubernetes-incubator/cri-tools/pull/213) Add completion command
52+
- [#216](https://github.com/kubernetes-incubator/cri-tools/pull/216) Add `--no-trunc` to `images` and `sandboxes` commands
53+
1554
# v0.2
1655

1756
cri-tools v0.2 enhances validation testings, improves crictl UX and also fixes several bugs. It has also updates container runtime interface (CRI) to kubernetes v1.8.

cmd/crictl/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func main() {
8585
app := cli.NewApp()
8686
app.Name = "crictl"
8787
app.Usage = "client for CRI"
88-
app.Version = "0.2.0"
88+
app.Version = "1.0.0-alpha.0"
8989

9090
app.Commands = []cli.Command{
9191
runtimeAttachCommand,

cmd/critest/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func main() {
3030
app := cli.NewApp()
3131
app.Name = "critest"
3232
app.Usage = "CRI tools for test."
33-
app.Version = "0.2.0"
33+
app.Version = "1.0.0-alpha.0"
3434

3535
app.Commands = []cli.Command{
3636
validationCommand,

0 commit comments

Comments
 (0)