From 2042424786af26dcc9e36230ea9731a9998c4a3e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 9 Mar 2016 11:49:45 -0800 Subject: [PATCH 1/4] ChangeLog: Strip trailing whitespace Signed-off-by: W. Trevor King --- ChangeLog | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 865de0b6..29258450 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,20 +2,20 @@ OpenContainers Specifications Changes with v0.3.0: Breaking changes: - + * config: Single, unified config file, #284 * config: cwd is a required default, and must be absolute, #286, #307, #308, #312 * config: qualify the name of the version field, #309 * config-linux: Convert classID from hex to uint32, #296 * config-linux: Separate mknod from cgroups, #298 - + Additions: - + * config-linux: Add NoNewPrivileges setting for linux, #290 - + Minor fixes and documentation: - + * config-linux: clarify oom_score_adj, #236, #292 * config-linux: Update links to cgroups documentation, #318 * config-linux: Remove pointers for slices preferring omitempty From 698d93075b5188db6a09fa69738376d484eca38f Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 9 Mar 2016 12:14:14 -0800 Subject: [PATCH 2/4] ChangeLog: Document changes since v0.3.0 Through 0bcb7119 (Merge pull request #341 2016-03-10). Signed-off-by: W. Trevor King Signed-off-by: Vincent Batts --- ChangeLog | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/ChangeLog b/ChangeLog index 29258450..8c511ad9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,37 @@ OpenContainers Specifications +Changes with v0.4.0: + Breaking changes: + + * config: Move capabilities, selinuxProcessLabel, apparmorProfile, + and noNewPrivileges from the linux setting to the process setting + and make them optional, renaming selinuxProcessLabel to + selinuxLabel, #329, #330, #339 + * runtime: Rename version to ociVerison in the state JSON, #225 + * runtime: Remove the directory requirement for storing state, now + that there is a 'state' operation, #225, #334 + * go: Shift *.go to specs-go/*.go, #276 + * config: Move rlimits to process, #341 + * go: Move config_linux.go content into config.go, removing + LinuxSpec, #310 + + Additions: + + * schema: Add JSON Schema (and validator) for `config.json`, #313 + * config: Add annotations for opaque-to-the-runtime data, #331 + * config-linux: Make seccomp optional, #333 + * runtime: Added additional operations: state, stop, and exec. + #225 + + Minor fixes and documentation: + + * config-linux: Change mount type from *rune to *string and fix + octal fileMode examples, #323 + * runtime: RFC 2119 phrasing for the lifecycle, #225 + * README: Add a full example of config.json, #276 + * README: Replace BlueJeans with UberConference, #326, #338 + * style: Document Go-pointer exceptions, #317 + Changes with v0.3.0: Breaking changes: From 3ce138b1934bf227a418e241ead496c383eaba1c Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 9 Mar 2016 19:07:35 +0000 Subject: [PATCH 3/4] version: v0.4.0 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 35785d70..f11c8978 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From ab44e373eca6a5e1f39be4035996b45e3adf2883 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 9 Mar 2016 19:08:24 +0000 Subject: [PATCH 4/4] version: bump v0.5.0-dev 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 f11c8978..27f45e08 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -6,12 +6,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 0 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 4 + VersionMinor = 5 // VersionPatch is for backwards-compatible bug fixes VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.