Skip to content

Commit

Permalink
Merge pull request #218 from feiskyer/version
Browse files Browse the repository at this point in the history
 Bump version to 1.0.0-alpha.0
  • Loading branch information
feiskyer authored Dec 14, 2017
2 parents 2c29c5c + eb43131 commit fb0e3fc
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 4 deletions.
43 changes: 41 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<!-- TOC -->

- [v1.0.0-alpha.0](#v100-alpha0)
- [CRI validation testing (critest)](#cri-validation-testing-critest)
- [CRI CLI (crictl)](#cri-cli-crictl)
- [v0.2](#v02)
- [CRI validation testing (critest)](#cri-validation-testing-critest)
- [CRI CLI (crictl)](#cri-cli-crictl)
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
- [CRI CLI (crictl)](#cri-cli-crictl-1)
- [v0.1](#v01)
- [Features](#features)
- [CRI validation testing](#cri-validation-testing)
Expand All @@ -12,6 +15,42 @@

<!-- /TOC -->

# v1.0.0-alpha.0

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.

### CRI validation testing (critest)

- [#164](https://github.com/kubernetes-incubator/cri-tools/pull/164) Fix security context test to not rely on `/etc/hosts`
- [#165](https://github.com/kubernetes-incubator/cri-tools/pull/165) Validate IPv4 only for port mapping tests
- [#196](https://github.com/kubernetes-incubator/cri-tools/pull/196) Fix privileged container validation by replacing `ip link` with `brctl addbr` command
- [#197](https://github.com/kubernetes-incubator/cri-tools/pull/197) Fix hostIPC validation to support old ipcmk versions
- [#199](https://github.com/kubernetes-incubator/cri-tools/pull/199) [#201](https://github.com/kubernetes-incubator/cri-tools/pull/201) Fix container logs validation
- [#200](https://github.com/kubernetes-incubator/cri-tools/pull/200) Add SELinux validation tests

### CRI CLI (crictl)

- [#156](https://github.com/kubernetes-incubator/cri-tools/pull/156) Fix empty RepoTags handling for `images` command
- [#163](https://github.com/kubernetes-incubator/cri-tools/pull/163) Add `--digest` option to `images` command
- [#167](https://github.com/kubernetes-incubator/cri-tools/pull/167) Add verbose for `status` command
- [#171](https://github.com/kubernetes-incubator/cri-tools/pull/171) Sort results by creation time for `ps`, `sandboxes` and `images` commands
- [#174](https://github.com/kubernetes-incubator/cri-tools/pull/174) Support select sandboxes by name for `sandboxes` and other commands
- [#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
- [#182](https://github.com/kubernetes-incubator/cri-tools/pull/182) Fix stdout and stderr for `attach` and `exec` command
- [#183](https://github.com/kubernetes-incubator/cri-tools/pull/183) Add created time to `sandboxes` command
- [#186](https://github.com/kubernetes-incubator/cri-tools/pull/186) Use kubelet's log library instead of a copied one
- [#187](https://github.com/kubernetes-incubator/cri-tools/pull/187) Add image tag and attempt to `ps` command
- [#194](https://github.com/kubernetes-incubator/cri-tools/pull/194) Add `config` command
- [#217](https://github.com/kubernetes-incubator/cri-tools/pull/217) Add `--latest` and `--last` options to `ps` and `sandboxes` commands
- [#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
- [#205](https://github.com/kubernetes-incubator/cri-tools/pull/205) Improve logs command and add `--timestamps` and `--since` options
- [#206](https://github.com/kubernetes-incubator/cri-tools/pull/206) Add verbose debut output to `inspect` and `inspects` commands
- [#207](https://github.com/kubernetes-incubator/cri-tools/pull/207) Sort flags for all commands
- [#209](https://github.com/kubernetes-incubator/cri-tools/pull/209) Add `stats` command
- [#211](https://github.com/kubernetes-incubator/cri-tools/pull/211) Rewrite timestamps in container status and sandbox status to make them more user friendly
- [#213](https://github.com/kubernetes-incubator/cri-tools/pull/213) Add completion command
- [#216](https://github.com/kubernetes-incubator/cri-tools/pull/216) Add `--no-trunc` to `images` and `sandboxes` commands

# v0.2

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.
Expand Down
2 changes: 1 addition & 1 deletion cmd/crictl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func main() {
app := cli.NewApp()
app.Name = "crictl"
app.Usage = "client for CRI"
app.Version = "0.2.0"
app.Version = "1.0.0-alpha.0"

app.Commands = []cli.Command{
runtimeAttachCommand,
Expand Down
2 changes: 1 addition & 1 deletion cmd/critest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func main() {
app := cli.NewApp()
app.Name = "critest"
app.Usage = "CRI tools for test."
app.Version = "0.2.0"
app.Version = "1.0.0-alpha.0"

app.Commands = []cli.Command{
validationCommand,
Expand Down

0 comments on commit fb0e3fc

Please sign in to comment.