Skip to content

Commit 4103108

Browse files
author
Mrunal Patel
committed
Merge pull request #336 from vbatts/bump-v0.4.0
Bump v0.4.0
2 parents 0bcb711 + ab44e37 commit 4103108

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed

ChangeLog

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,53 @@
11
OpenContainers Specifications
22

3+
Changes with v0.4.0:
4+
Breaking changes:
5+
6+
* config: Move capabilities, selinuxProcessLabel, apparmorProfile,
7+
and noNewPrivileges from the linux setting to the process setting
8+
and make them optional, renaming selinuxProcessLabel to
9+
selinuxLabel, #329, #330, #339
10+
* runtime: Rename version to ociVerison in the state JSON, #225
11+
* runtime: Remove the directory requirement for storing state, now
12+
that there is a 'state' operation, #225, #334
13+
* go: Shift *.go to specs-go/*.go, #276
14+
* config: Move rlimits to process, #341
15+
* go: Move config_linux.go content into config.go, removing
16+
LinuxSpec, #310
17+
18+
Additions:
19+
20+
* schema: Add JSON Schema (and validator) for `config.json`, #313
21+
* config: Add annotations for opaque-to-the-runtime data, #331
22+
* config-linux: Make seccomp optional, #333
23+
* runtime: Added additional operations: state, stop, and exec.
24+
#225
25+
26+
Minor fixes and documentation:
27+
28+
* config-linux: Change mount type from *rune to *string and fix
29+
octal fileMode examples, #323
30+
* runtime: RFC 2119 phrasing for the lifecycle, #225
31+
* README: Add a full example of config.json, #276
32+
* README: Replace BlueJeans with UberConference, #326, #338
33+
* style: Document Go-pointer exceptions, #317
34+
335
Changes with v0.3.0:
436
Breaking changes:
5-
37+
638
* config: Single, unified config file, #284
739
* config: cwd is a required default, and must be absolute, #286,
840
#307, #308, #312
941
* config: qualify the name of the version field, #309
1042
* config-linux: Convert classID from hex to uint32, #296
1143
* config-linux: Separate mknod from cgroups, #298
12-
44+
1345
Additions:
14-
46+
1547
* config-linux: Add NoNewPrivileges setting for linux, #290
16-
48+
1749
Minor fixes and documentation:
18-
50+
1951
* config-linux: clarify oom_score_adj, #236, #292
2052
* config-linux: Update links to cgroups documentation, #318
2153
* config-linux: Remove pointers for slices preferring omitempty

specs-go/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const (
66
// VersionMajor is for an API incompatible changes
77
VersionMajor = 0
88
// VersionMinor is for functionality in a backwards-compatible manner
9-
VersionMinor = 4
9+
VersionMinor = 5
1010
// VersionPatch is for backwards-compatible bug fixes
1111
VersionPatch = 0
1212

0 commit comments

Comments
 (0)