Skip to content

Commit 852a3b6

Browse files
committed
Update changelog
1 parent f4e78fa commit 852a3b6

File tree

2 files changed

+38
-8
lines changed

2 files changed

+38
-8
lines changed

CHANGELOG.md

+37-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<!-- TOC -->
22

3-
- [v1.0.0-alpha.0](#v100-alpha0)
3+
- [v1.0.0-beta.0](#v100-beta0)
44
- [CRI validation testing (critest)](#cri-validation-testing-critest)
55
- [CRI CLI (crictl)](#cri-cli-crictl)
6+
- [v1.0.0-alpha.0](#v100-alpha0)
7+
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
8+
- [CRI CLI (crictl)](#cri-cli-crictl-1)
69
- [v0.2](#v02)
7-
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
8-
- [CRI CLI (crictl)](#cri-cli-crictl-1)
10+
- [CRI validation testing (critest)](#cri-validation-testing-critest-2)
11+
- [CRI CLI (crictl)](#cri-cli-crictl-2)
912
- [v0.1](#v01)
1013
- [Features](#features)
1114
- [CRI validation testing](#cri-validation-testing)
@@ -15,6 +18,33 @@
1518

1619
<!-- /TOC -->
1720

21+
# v1.0.0-beta.0
22+
23+
cri-tools v1.0.0-beta.0 is mainly focus on UX improvements, including make crictl command more user friendly and add initial Windows support. Container runtime interface (CRI) has been updated to v1alpha2 in order to be compatible with kubernetes v1.10. Version matrix and branches for different kubernetes versions are also added.
24+
25+
### CRI validation testing (critest)
26+
27+
- [#227](https://github.com/kubernetes-incubator/cri-tools/pull/227) Set StdinOnce to true for attach test
28+
- [#232](https://github.com/kubernetes-incubator/cri-tools/pull/232) Improves CRI log parser
29+
- [#242](https://github.com/kubernetes-incubator/cri-tools/pull/242) Add validation of reopening container logs
30+
- [#250](https://github.com/kubernetes-incubator/cri-tools/pull/250) Add validation of username not empty in ImageStatus
31+
- [#252](https://github.com/kubernetes-incubator/cri-tools/pull/252) Improve image test and make test run in parallel
32+
- [#257](https://github.com/kubernetes-incubator/cri-tools/pull/257) Add golang 1.10 and fix a race condition
33+
- [#261](https://github.com/kubernetes-incubator/cri-tools/pull/261) [#273](https://github.com/kubernetes-incubator/cri-tools/pull/273) Remove dependency of source code
34+
- [#267](https://github.com/kubernetes-incubator/cri-tools/pull/267) Add test for pid namespace
35+
- [#269](https://github.com/kubernetes-incubator/cri-tools/pull/269) Add validation of tty settings for exec
36+
37+
### CRI CLI (crictl)
38+
39+
- [#222](https://github.com/kubernetes-incubator/cri-tools/pull/222) Rename `sandboxes` subcommand to `pods` and rename`sandbox` to `podsandbox` in all subcommands
40+
- [#225](https://github.com/kubernetes-incubator/cri-tools/pull/225) Add support of windows
41+
- [#238](https://github.com/kubernetes-incubator/cri-tools/pull/238) Update CRI to v1alpha2
42+
- [#255](https://github.com/kubernetes-incubator/cri-tools/pull/255) Add support of multiple Ids to subcommands
43+
- [#256](https://github.com/kubernetes-incubator/cri-tools/pull/256) Add `crictl ps -q`
44+
- [#258](https://github.com/kubernetes-incubator/cri-tools/pull/258) Rename CRI endpoints environment variable to `CONTAINER_RUNTIME_ENDPOINT` and `IMAGE_SERVICE_ENDPOINT`
45+
- [#268](https://github.com/kubernetes-incubator/cri-tools/pull/268) Avoid panic when runtimes are using truncated IDs
46+
- [#274](https://github.com/kubernetes-incubator/cri-tools/pull/274) Add support of insecure TLS without auth
47+
1848
# v1.0.0-alpha.0
1949

2050
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.
@@ -24,7 +54,7 @@ cri-tools v1.0.0-alpha.0 is mainly focus on UX improvements, including make cric
2454
- [#164](https://github.com/kubernetes-incubator/cri-tools/pull/164) Fix security context test to not rely on `/etc/hosts`
2555
- [#165](https://github.com/kubernetes-incubator/cri-tools/pull/165) Validate IPv4 only for port mapping tests
2656
- [#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
57+
- [#197](https://github.com/kubernetes-incubator/cri-tools/pull/197) Fix hostIPC validation to support old ipcmk versions
2858
- [#199](https://github.com/kubernetes-incubator/cri-tools/pull/199) [#201](https://github.com/kubernetes-incubator/cri-tools/pull/201) Fix container logs validation
2959
- [#200](https://github.com/kubernetes-incubator/cri-tools/pull/200) Add SELinux validation tests
3060

@@ -34,11 +64,11 @@ cri-tools v1.0.0-alpha.0 is mainly focus on UX improvements, including make cric
3464
- [#163](https://github.com/kubernetes-incubator/cri-tools/pull/163) Add `--digest` option to `images` command
3565
- [#167](https://github.com/kubernetes-incubator/cri-tools/pull/167) Add verbose for `status` command
3666
- [#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
67+
- [#174](https://github.com/kubernetes-incubator/cri-tools/pull/174) Support select sandboxes by name for `sandboxes` and other commands
3868
- [#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
3969
- [#182](https://github.com/kubernetes-incubator/cri-tools/pull/182) Fix stdout and stderr for `attach` and `exec` command
4070
- [#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
71+
- [#186](https://github.com/kubernetes-incubator/cri-tools/pull/186) Use kubelet's log library instead of a copied one
4272
- [#187](https://github.com/kubernetes-incubator/cri-tools/pull/187) Add image tag and attempt to `ps` command
4373
- [#194](https://github.com/kubernetes-incubator/cri-tools/pull/194) Add `config` command
4474
- [#217](https://github.com/kubernetes-incubator/cri-tools/pull/217) Add `--latest` and `--last` options to `ps` and `sandboxes` commands
@@ -58,7 +88,7 @@ cri-tools v0.2 enhances validation testings, improves crictl UX and also fixes s
5888
## CRI validation testing (critest)
5989

6090
- [#127](https://github.com/kubernetes-incubator/cri-tools/pull/127) Adds validation tests for supplemental groups
61-
- [#135](https://github.com/kubernetes-incubator/cri-tools/pull/135) [#137](https://github.com/kubernetes-incubator/cri-tools/pull/137) and [#144](https://github.com/kubernetes-incubator/cri-tools/pull/144) Adds validation tests for seccomp
91+
- [#135](https://github.com/kubernetes-incubator/cri-tools/pull/135) [#137](https://github.com/kubernetes-incubator/cri-tools/pull/137) and [#144](https://github.com/kubernetes-incubator/cri-tools/pull/144) Adds validation tests for seccomp
6292
- [#139](https://github.com/kubernetes-incubator/cri-tools/pull/139) Adds validation tests for sysctls
6393
- [#140](https://github.com/kubernetes-incubator/cri-tools/pull/140) Adds validation tests for AppArmor
6494
- [#141](https://github.com/kubernetes-incubator/cri-tools/pull/141) Adds validation tests for NoNewPrivs

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Version matrix:
2323

2424
| Kubernetes Version | cri-tools Version | cri-tools branch |
2525
|--------------------|-------------------|------------------|
26-
| master | | master |
26+
| 1.10.X | v1.0.0-beta.0 | master |
2727
| 1.9.X | v1.0.0-alpha.0 | release-1.9 |
2828
| 1.8.X | v0.2 | release-1.8 |
2929
| 1.7.X | v0.1 | release-1.7 |

0 commit comments

Comments
 (0)