Skip to content

Commit 2a06026

Browse files
authored
Merge pull request #1037 from vbatts/bumpversion_v1.0.2
Release v1.0.2
2 parents 9e4b756 + 1ac6f8d commit 2a06026

File tree

3 files changed

+66
-1
lines changed

3 files changed

+66
-1
lines changed

ChangeLog

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,69 @@
11
OpenContainers Specifications
22

3+
Changes with v1.0.2:
4+
5+
Additions:
6+
7+
* Add create-container, create-runtime and start-container hooks (#1008)
8+
* config-linux: add Intel RDT CLOS name sharing support (#988)
9+
* config-linux: Add Intel RDT/MBA Linux support (#932)
10+
* config-linux: Add Memory cgroup's use_hierarchy (#985)
11+
* Add Linux personality support (#1012)
12+
* config: Add Windows Devices to Schema (#976)
13+
* Add support for SCMP_ACT_LOG (#1019)
14+
* config-linux: support seccomp flags (#1018)
15+
16+
Minor fixes and documentation:
17+
18+
* Makefile: avoid SELinux for making docs
19+
* Clarify case with pre-configured Intel RDT closID (#1034)
20+
* config-linux: describe more about rootfs mount propagation (#1035)
21+
* config-linux: add SHOULD to linux.namespaces.type (#1025)
22+
* Reduce DCO checks per PR from 3 to 1 (#1029)
23+
* Fix typo in RELEASES.md (#1033)
24+
* Remove some unneeded indent (#1031)
25+
* Add documentation how to do releases (#1027)
26+
* Removed Vishnu Kannan & Brandon Philips from maintainers (#1030 & #1028)
27+
* schema: drop id from umask (#1024)
28+
* implementations.md: fix repository for crun (#1017)
29+
* Update meeting info section to point to "org" repo (#1016)
30+
* Fix markdown escape in config-linux (#1013)
31+
* config-linux: add more info about hugetlb page size (#1011)
32+
* Fix ociVersion of Configuration Schema Example to support ambient capability (#1009)
33+
* Fix Namespaces to use LinuxNamespaceType (#1007)
34+
* change new pid namespace description (#1006)
35+
* updating link to code of conduct in org repository (#1001)
36+
* Update Windows LayerFolder docs (#999)
37+
* Windows:Have native CommandLine in Process (#998)
38+
* vm: fix parameters field (#994)
39+
* config-linux: documentation change for Intel RDT/MBA Software Controller support (#992)
40+
* Bump Go versions (#993)
41+
* Support for network namespace in windows (#989)
42+
* config: clarify source mount (#981)
43+
* Fix camelCasing on idType to align with other Windows spec conventions (#976)
44+
* meeting: Bump July meeting from the 4th to the 11th (#977)
45+
* docs: Added kata-runtime to implementations (#969)
46+
* Add gVisor to the implementations list (#970)
47+
* .travis.yml: Get schema dependencies in before_install (#968)
48+
* config: Clarify execution environment for hooks (#953)
49+
* config-linux: Drop console(4) reference (#965)
50+
* Linux devices: uid/gid relative to container (#959)
51+
* config: Add VM-based container configuration section (#949)
52+
* uidMappings: change order of fields for clarity (#956)
53+
* specs-go/config: Define RDMA cgroup (#942)
54+
* schema/Makefile: fix test (#947)
55+
* config: Fix Linux mount options links (#952)
56+
* glossary: Bump JSON spec to RFC 8259 (#951)
57+
* schema: Completely drop our JSON Schema 'id' properties (#945)
58+
* meeting: Bump January meeting from the 3rd to the 10th (#943)
59+
* config: add "umask" field to POSIX "user" section (#941)
60+
* schema: add allowed values for defaultAction (#940)
61+
* config: Dedent root paragraphs, since they aren't a list entry (#936)
62+
* fix the link to hook (#933)
63+
* config: Collapse extensibility to a single MUST (#916)
64+
* schema/defs-linux: change weight type to uint16 (#898)
65+
* runtime: Clarify ociVersion as based on the state schema (#903)
66+
367
Changes with v1.0.1:
468

569
Minor fixes and documentation:

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ PANDOC ?= $(shell command -v pandoc 2>/dev/null)
77
ifeq "$(strip $(PANDOC))" ''
88
ifneq "$(strip $(DOCKER))" ''
99
PANDOC = $(DOCKER) run \
10+
--security-opt label=disable \
1011
-it \
1112
--rm \
1213
-v $(shell pwd)/:/input/:ro \

specs-go/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const (
88
// VersionMinor is for functionality in a backwards-compatible manner
99
VersionMinor = 0
1010
// VersionPatch is for backwards-compatible bug fixes
11-
VersionPatch = 1
11+
VersionPatch = 2
1212

1313
// VersionDev indicates development branch. Releases will be empty string.
1414
VersionDev = "-dev"

0 commit comments

Comments
 (0)