Skip to content

Commit 0ff8cd9

Browse files
authored
Merge pull request #1175 from AkihiroSuda/propose-v1.1.0-rc1
Release v1.1.0-rc.1
2 parents 5cfc4c3 + c42f9ae commit 0ff8cd9

File tree

2 files changed

+72
-3
lines changed

2 files changed

+72
-3
lines changed

ChangeLog

+69
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
OpenContainers Specifications
22

3+
Changes with v1.1.0-rc.1:
4+
5+
Breaking changes (but rather conforms to the existing runc implementation):
6+
7+
* config: change prestart hook spec to match reality (#1169)
8+
9+
Deprecations:
10+
11+
* config-linux: mark memory.kernel[TCP] as NOT RECOMMENDED (#1093)
12+
13+
Additions:
14+
15+
* cgroup: add cgroup v2 support (#1040)
16+
* seccomp: allow to override errno return code (#1041)
17+
* seccomp: Add support for SCMP_ACT_KILL_PROCESS (#1044)
18+
* Update seccomp architectures to support RISCV64 (#1059)
19+
* Add support for SCMP_ACT_KILL_THREAD (#1064)
20+
* Add Seccomp Notify support using UNIX sockets and container metadata (#1074)
21+
* config-linux: Add Intel RDT CMT and MBM Linux support (#1076)
22+
* seccomp: allow to override default errno return code (#1087)
23+
* Introduce zos as platform (#1095)
24+
* config-linux: add idle option for container cgroup (#1136)
25+
* config-linux: add CFS bandwidth burst (#1120)
26+
* IDMapping field for mount point (#1143)
27+
* schema: add cpu idle (#1145)
28+
* add domainname spec entity (#1156)
29+
* config-linux: add memory.checkBeforeUpdate (#1158)
30+
* seccomp: Add flag SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV (#1161)
31+
32+
Minor fixes and documentation:
33+
34+
* seccomp: fix go-specs for errnoRet (#1042)
35+
* MAINTAINERS: Add @cyphar as maintainer (#1043)
36+
* Define State for container and runtime namespace (#1045)
37+
* Add Giuseppe Scrivano as a runtime spec maintainer (#1048)
38+
* Remove superfluous 'an' (#1049)
39+
* Add State status constants to spec-go (#1046)
40+
* config.go: make umask a pointer (#1058)
41+
* Update State structure to use the new ContainerState type (#1056)
42+
* docs: Added enclave OCI runtime rune to implementations (#1055)
43+
* Change all references from whitelist to allowlist (#1054)
44+
* Fix int64 and uint64 type value ranges (#1060)
45+
* MAINTAINERS: update vbatts email (#1065)
46+
* travis: fix go_import_path (#1072)
47+
* Makefile: Fix golint URL used in go get (#1075)
48+
* config-linux: fix personality link (#1086)
49+
* README: Fix broken link for charter (#1091)
50+
* Fix seccomp notify inconsistencies (#1096)
51+
* runtime should WARN / ignore capabilities that cannot be granted (#1094)
52+
* config-linux: clarify the handling of ClosID RDT parameter (#1104)
53+
* defs-zos: [Fix] prevent schema parsers from hitting recursion-loop while resolving types. (#1117)
54+
* fix the lifecycle reference in the states listing (#1118)
55+
* add youki to implementations.md (#1126)
56+
* Switch to GitHub Actions, CODEOWNERS, etc. (#1128)
57+
* specify cgroup ownership semantics (#1123)
58+
* config-linux: MAY reject an unfit cgroup (#1125)
59+
* cgroup ownership: clarify that some files may not exist (#1137)
60+
* typo: seccompFD -> seccompFd (#1133)
61+
* schema: update README.md (#1083)
62+
* schema: make with golang 1.16 (#1084)
63+
* Update Windows CPU comments (#1144)
64+
* specs-go: export LinuxBlockIODevice (#1103)
65+
* config-linux: update type of LinuxCPU.Idle to *int64 (#1146)
66+
* fix RFC link (#1153)
67+
* Add available LinuxSeccompFlags (#1138)
68+
* maintainer updates as per (#1101 (#1150)
69+
* GOVERNANCE: correct the Charter URL (#1157)
70+
* CODEOWNERS: sync with MAINTAINERS (#1160)
71+
372
Changes with v1.0.2:
473

574
Additions:

specs-go/version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ const (
66
// VersionMajor is for an API incompatible changes
77
VersionMajor = 1
88
// VersionMinor is for functionality in a backwards-compatible manner
9-
VersionMinor = 0
9+
VersionMinor = 1
1010
// VersionPatch is for backwards-compatible bug fixes
11-
VersionPatch = 2
11+
VersionPatch = 0
1212

1313
// VersionDev indicates development branch. Releases will be empty string.
14-
VersionDev = "-dev"
14+
VersionDev = "-rc.1-dev"
1515
)
1616

1717
// Version is the specification version that the package types support.

0 commit comments

Comments
 (0)