1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-04 16:25:35 +00:00

Compare commits

...

12 Commits

Author SHA1 Message Date
Girish Ramakrishnan
2e299fce84 Version 1.63.0 2019-06-03 09:45:39 -07:00
Girish Ramakrishnan
7a49168732 Update minio to RELEASE.2019-06-01T03-46-14Z 2019-06-03 09:33:19 -07:00
Girish Ramakrishnan
fe56ecfd3d Version 1.62.0 2019-05-28 10:48:49 -07:00
Girish Ramakrishnan
2b96c15d8c Fix test 2019-05-28 10:48:15 -07:00
Girish Ramakrishnan
e7bd62c4ef update tests 2019-05-28 10:43:28 -07:00
Girish Ramakrishnan
c887c30e92 Update minio to 2019-05-23T00-29-34Z 2019-05-28 10:39:01 -07:00
Girish Ramakrishnan
1f184eacbf Version 1.61.0 2019-05-14 18:08:26 -07:00
Girish Ramakrishnan
0c8d81686b Update minio to 2019-05-14T23-57-45Z 2019-05-14 18:04:35 -07:00
Girish Ramakrishnan
0f89e283cf Version 1.60.0 2019-05-09 11:02:20 -07:00
Girish Ramakrishnan
cfabc51ae5 Update minio to RELEASE.2019-05-02T19-07-09Z 2019-05-09 10:47:44 -07:00
Girish Ramakrishnan
067f8069eb Version 1.59.0 2019-04-24 09:30:38 -07:00
Girish Ramakrishnan
44236fb8a6 Update minio to RELEASE.2019-04-23T23-50-36Z 2019-04-24 09:18:16 -07:00
7 changed files with 1191 additions and 571 deletions

View File

@@ -315,3 +315,18 @@
[1.58.0]
* Update minio to 2019-04-18T21-44-59Z
[1.59.0]
* Update minio to 2019-04-23T23-50-36Z
[1.60.0]
* Update minio to 2019-05-02T19-07-09Z
[1.61.0]
* Update minio to 2019-05-14T23-57-45Z
[1.62.0]
* Update minio to 2019-05-23T00-29-34Z
[1.63.0]
* Update minio to 2019-06-01T03-46-14Z

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "1.58.0",
"version": "1.63.0",
"healthCheckPath": "/minio/login",
"httpPort": 8000,
"addons": {

View File

@@ -1,4 +1,4 @@
This app packages Minio <upstream>2019-04-18T21-44-59Z</upstream>.
This app packages Minio <upstream>2019-06-01T03-46-14Z</upstream>.
Minio is a distributed object storage server built for cloud applications and devops.

View File

@@ -1,7 +1,7 @@
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
RUN mkdir -p /app/code \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.2019-04-18T21-44-59Z -O /app/code/minio \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.2019-06-01T03-46-14Z -O /app/code/minio \
&& chmod +x /app/code/minio
WORKDIR /app/code

1718
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,14 +9,14 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^2.36.0",
"ejs": "^2.4.2",
"chromedriver": "^74.0.0",
"ejs": "^2.6.1",
"expect.js": "^0.3.1",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.3",
"selenium-server-standalone-jar": "^2.53.1",
"selenium-webdriver": "^2.53.3",
"superagent": "^1.4.0"
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"selenium-server-standalone-jar": "^3.141.5",
"selenium-webdriver": "^3.6.0",
"superagent": "^5.0.5"
}
}

View File

@@ -9,8 +9,10 @@ var execSync = require('child_process').execSync,
path = require('path'),
webdriver = require('selenium-webdriver');
var by = webdriver.By,
until = webdriver.until;
var by = require('selenium-webdriver').By,
until = require('selenium-webdriver').until,
Key = require('selenium-webdriver').Key,
Builder = require('selenium-webdriver').Builder;
var accessKey = 'admin',
secretKey = 'secretkey';
@@ -23,8 +25,7 @@ process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
describe('Application life cycle test', function () {
this.timeout(0);
var chrome = require('selenium-webdriver/chrome');
var server, browser = new chrome.Driver();
var server, browser = new Builder().forBrowser('chrome').build();
before(function (done) {
var seleniumJar= require('selenium-server-standalone-jar');