Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.2 #1026

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion specs-go/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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"
Expand Down