Skip to content
This repository was archived by the owner on Aug 14, 2020. It is now read-only.

Commit fd5e3d8

Browse files
committed
version: bump to v0.8.5
1 parent 208ad62 commit fd5e3d8

File tree

15 files changed

+30
-22
lines changed

15 files changed

+30
-22
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.8.5
2+
3+
This is a minor release of the spec, containing one new backwards-compatible feature, and several tooling improvements:
4+
- Added seccomp support, via the `os/linux/seccomp-remove-set` and `os/linux/seccomp-retain-set` isolator types. This includes `actool patch-manifest` support (#521)
5+
- Moved to using `vendor/` directory with Godeps (#618)
6+
- Added a port parameter to the discovery code, allowing users to perform discovery on arbitrary ports (#629)
7+
- Changed schema code to fail more gracefully (return error instead of panic) if users inadvertently create a bad Isolator value (#633)
8+
19
### v0.8.4
210

311
This is a minor release of the spec; the only changes over 0.8.3 are that some of the Godeps are updated to use tagged releases.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ $ find /tmp/my-app/
8383
$ cat /tmp/my-app/manifest
8484
{
8585
"acKind": "ImageManifest",
86-
"acVersion": "0.8.4",
86+
"acVersion": "0.8.5",
8787
"name": "my-app",
8888
"labels": [
8989
{"name": "os", "value": "linux"},
@@ -115,7 +115,7 @@ and verify that the manifest was embedded appropriately
115115
$ tar xf /tmp/my-app.aci manifest -O | python -m json.tool
116116
{
117117
"acKind": "ImageManifest",
118-
"acVersion": "0.8.4",
118+
"acVersion": "0.8.5",
119119
"annotations": null,
120120
"app": {
121121
"environment": [],

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.4+git
1+
0.8.5

ace/image_manifest_main.json.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.4",
2+
"acVersion": "0.8.5",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "value": "0.8.4" },
6+
{ "name": "version", "value": "0.8.5" },
77
{ "name": "os", "value": "@GOOS@" },
88
{ "name": "arch", "value": "@GOARCH@" }
99
],

ace/image_manifest_sidekick.json.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.4",
2+
"acVersion": "0.8.5",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "value": "0.8.4" },
6+
{ "name": "version", "value": "0.8.5" },
77
{ "name": "os", "value": "@GOOS@" },
88
{ "name": "arch", "value": "@GOARCH@" }
99
],

aci/file_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func newTestACI(usedotslash bool) (*os.File, error) {
2828
return nil, err
2929
}
3030

31-
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.8.4","name":"example.com/app"}`
31+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.8.5","name":"example.com/app"}`
3232

3333
gw := gzip.NewWriter(tf)
3434
tw := tar.NewWriter(gw)

examples/image.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "ImageManifest",
3-
"acVersion": "0.8.4",
3+
"acVersion": "0.8.5",
44
"name": "example.com/reduce-worker",
55
"labels": [
66
{

examples/pod_runtime.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "PodManifest",
3-
"acVersion": "0.8.4",
3+
"acVersion": "0.8.5",
44
"apps": [
55
{
66
"name": "reduce-worker",

pkg/acirenderer/acirenderer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,7 +2149,7 @@ func TestEmptyRootFsDir(t *testing.T) {
21492149
`
21502150
{
21512151
"acKind": "ImageManifest",
2152-
"acVersion": "0.8.4",
2152+
"acVersion": "0.8.5",
21532153
"name": "example.com/test_empty_rootfs"
21542154
}
21552155
`,
@@ -2175,7 +2175,7 @@ func TestEmptyRootFsDir(t *testing.T) {
21752175
`
21762176
{
21772177
"acKind": "ImageManifest",
2178-
"acVersion": "0.8.4",
2178+
"acVersion": "0.8.5",
21792179
"name": "example.com/test_empty_rootfs_pwl",
21802180
"pathWhitelist": ["foo"]
21812181
}

schema/image_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestEmptyApp(t *testing.T) {
2020
imj := `
2121
{
2222
"acKind": "ImageManifest",
23-
"acVersion": "0.8.4",
23+
"acVersion": "0.8.5",
2424
"name": "example.com/test"
2525
}
2626
`

0 commit comments

Comments
 (0)