From 3aa0241db8acab772eef546eaf1df26cf1341264 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Fri, 2 Jun 2017 19:50:25 +0200 Subject: [PATCH 1/3] Minor changes to tests & description --- DESCRIPTION.md | 2 +- test/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 8d21f0b..eea6e17 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2017-05-05T01-14-51Z. +This app packages Minio 2017-05-05T01-14-51Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/test/test.js b/test/test.js index 01ec108..0c43992 100644 --- a/test/test.js +++ b/test/test.js @@ -159,7 +159,7 @@ describe('Application life cycle test', function () { it('move to different location', function () { browser.manage().deleteAllCookies(); - execSync('cloudron configure --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); var inspect = JSON.parse(execSync('cloudron inspect')); app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0]; expect(app).to.be.an('object'); From e4e84d7a268c12791e816a628afea968170af66a Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Wed, 14 Jun 2017 22:45:46 +0200 Subject: [PATCH 2/3] Updated tests --- README.md | 3 +-- test/test.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c0f8f4a..c5f6936 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ The e2e tests are located in the `test/` folder and require [nodejs](http://node cd minio-app/test npm install -export PATH=$PATH:node_modules/.bin -mocha --bail test.js +PATH=$PATH:node_modules/.bin mocha --bail test.js ``` diff --git a/test/test.js b/test/test.js index 0c43992..33b0931 100644 --- a/test/test.js +++ b/test/test.js @@ -41,7 +41,7 @@ describe('Application life cycle test', function () { done(); }); - var LOCATION = 'minio-test'; + var LOCATION = 'test'; var TEST_TIMEOUT = 10000; var app; From 3b2df1b8a1121d84a7a1fff9f119e14013a48439 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Wed, 14 Jun 2017 22:46:14 +0200 Subject: [PATCH 3/3] Updated to 2017-06-13T19-01-01Z --- CHANGELOG | 3 +++ CloudronManifest.json | 2 +- DESCRIPTION.md | 2 +- Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 14c66d4..4d9699d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -25,3 +25,6 @@ [0.2.6] * Updated to 2017-05-05T01-14-51Z + +[0.2.7] +* Updated to 2017-06-13T19-01-01Z diff --git a/CloudronManifest.json b/CloudronManifest.json index fa72548..79a4faa 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "0.2.6", + "version": "0.2.7", "healthCheckPath": "/minio/login", "httpPort": 8000, "addons": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index eea6e17..1d91926 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2017-05-05T01-14-51Z. +This app packages Minio 2017-06-13T19-01-01Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/Dockerfile b/Dockerfile index 8ea2891..60fcdee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ MAINTAINER Minio Developers EXPOSE 8000 -ENV VERSION 2017-05-05T01-14-51Z +ENV VERSION 2017-06-13T19-01-01Z RUN mkdir -p /app/code \ - && wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.${VERSION} -O /app/code/minio \ + && wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.${VERSION} -O /app/code/minio \ && chmod +x /app/code/minio WORKDIR /app/code