From 325e1a28b972fbf3f11d2aa451a55fe4fdef2ab6 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 9 Jan 2020 09:59:18 -0500 Subject: [PATCH 1/4] Makefile: avoid SELinux for making docs Signed-off-by: Vincent Batts --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b7624caac..494448dad 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ PANDOC ?= $(shell command -v pandoc 2>/dev/null) ifeq "$(strip $(PANDOC))" '' ifneq "$(strip $(DOCKER))" '' PANDOC = $(DOCKER) run \ + --security-opt label=disable \ -it \ --rm \ -v $(shell pwd)/:/input/:ro \ From d85def2c39dcec50321705283083c0e7d7326b69 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 9 Jan 2020 11:24:18 -0500 Subject: [PATCH 2/4] ChangeLog: changes v1.0.1...v1.0.2 Signed-off-by: Vincent Batts --- ChangeLog | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9849dc715..70c012139 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,61 @@ OpenContainers Specifications +Changes with v1.0.2: + + Additions: + + * Add create-container, create-runtime and start-container hooks (#1008) + * config-linux: add Intel RDT CLOS name sharing support (#988) + * config-linux: Add Intel RDT/MBA Linux support (#932) + * config-linux: Add Memory cgroup's use_hierarchy (#985) + * Add Linux personality support (#1012) + * config: Add Windows Devices to Schema (#976) + * Add support for SCMP_ACT_LOG (#1019) + * config-linux: support seccomp flags (#1018) + + Minor fixes and documentation: + + * Makefile: avoid SELinux for making docs + * schema: drop id from umask (#1024) + * implementations.md: fix repository for crun (#1017) + * Update meeting info section to point to "org" repo (#1016) + * Fix markdown escape in config-linux (#1013) + * config-linux: add more info about hugetlb page size (#1011) + * Fix ociVersion of Configuration Schema Example to support ambient capability (#1009) + * Fix Namespaces to use LinuxNamespaceType (#1007) + * change new pid namespace description (#1006) + * updating link to code of conduct in org repository (#1001) + * Update Windows LayerFolder docs (#999) + * Windows:Have native CommandLine in Process (#998) + * vm: fix parameters field (#994) + * config-linux: documentation change for Intel RDT/MBA Software Controller support (#992) + * Bump Go versions (#993) + * Support for network namespace in windows (#989) + * config: clarify source mount (#981) + * Fix camelCasing on idType to align with other Windows spec conventions (#976) + * meeting: Bump July meeting from the 4th to the 11th (#977) + * docs: Added kata-runtime to implementations (#969) + * Add gVisor to the implementations list (#970) + * .travis.yml: Get schema dependencies in before_install (#968) + * config: Clarify execution environment for hooks (#953) + * config-linux: Drop console(4) reference (#965) + * Linux devices: uid/gid relative to container (#959) + * config: Add VM-based container configuration section (#949) + * uidMappings: change order of fields for clarity (#956) + * specs-go/config: Define RDMA cgroup (#942) + * schema/Makefile: fix test (#947) + * config: Fix Linux mount options links (#952) + * glossary: Bump JSON spec to RFC 8259 (#951) + * schema: Completely drop our JSON Schema 'id' properties (#945) + * meeting: Bump January meeting from the 3rd to the 10th (#943) + * config: add "umask" field to POSIX "user" section (#941) + * schema: add allowed values for defaultAction (#940) + * config: Dedent root paragraphs, since they aren't a list entry (#936) + * fix the link to hook (#933) + * config: Collapse extensibility to a single MUST (#916) + * schema/defs-linux: change weight type to uint16 (#898) + * runtime: Clarify ociVersion as based on the state schema (#903) + Changes with v1.0.1: Minor fixes and documentation: From af2177654ef1e2e42a0627a0e1f7f573fa78f7c6 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 9 Jan 2020 11:24:50 -0500 Subject: [PATCH 3/4] specs-go: update version to 1.0.2 Signed-off-by: Vincent Batts --- specs-go/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs-go/version.go b/specs-go/version.go index b920fc1b3..bda7e1ca9 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 0 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 1 + VersionPatch = 2 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 2c591461ada441639ebcb2120a33941ec9b6983f Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 9 Jan 2020 11:25:17 -0500 Subject: [PATCH 4/4] specs-go: bump master back to -dev Signed-off-by: Vincent Batts --- specs-go/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/version.go b/specs-go/version.go index bda7e1ca9..596af0c2f 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 2 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.