mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 16:29:13 +00:00
Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
fe56ecfd3d | ||
|
2b96c15d8c | ||
|
e7bd62c4ef | ||
|
c887c30e92 | ||
|
1f184eacbf | ||
|
0c8d81686b | ||
|
0f89e283cf | ||
|
cfabc51ae5 | ||
|
067f8069eb | ||
|
44236fb8a6 | ||
|
98a80ebe26 | ||
|
2323b653e1 | ||
|
caed9ab165 | ||
|
d754979356 | ||
|
fb4db828f1 | ||
|
1edd7cf09a |
24
CHANGELOG
24
CHANGELOG
@@ -303,3 +303,27 @@
|
|||||||
[1.55.0]
|
[1.55.0]
|
||||||
* Update minio to 2019-03-27T22-35-21Z
|
* Update minio to 2019-03-27T22-35-21Z
|
||||||
|
|
||||||
|
[1.56.0]
|
||||||
|
* Update miniot to 2019-04-04T18-31-46Z
|
||||||
|
* (security) fix privilege escalation against inter-node communication
|
||||||
|
* (security) Validate if bucket names are internal
|
||||||
|
* canonicalize ETag correctly
|
||||||
|
|
||||||
|
[1.57.0]
|
||||||
|
* Update minio to 2019-04-09T01-22-30Z
|
||||||
|
|
||||||
|
[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
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Distributed object storage",
|
"tagline": "Distributed object storage",
|
||||||
"version": "1.55.0",
|
"version": "1.62.0",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Minio <upstream>2019-03-27T22-35-21Z</upstream>.
|
This app packages Minio <upstream>2019-05-23T00-29-34Z</upstream>.
|
||||||
|
|
||||||
Minio is a distributed object storage server built for cloud applications and devops.
|
Minio is a distributed object storage server built for cloud applications and devops.
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
||||||
|
|
||||||
RUN mkdir -p /app/code \
|
RUN mkdir -p /app/code \
|
||||||
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.2019-03-27T22-35-21Z -O /app/code/minio \
|
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.2019-05-23T00-29-34Z -O /app/code/minio \
|
||||||
&& chmod +x /app/code/minio
|
&& chmod +x /app/code/minio
|
||||||
|
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
1718
test/package-lock.json
generated
1718
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,14 +9,14 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^2.36.0",
|
"chromedriver": "^74.0.0",
|
||||||
"ejs": "^2.4.2",
|
"ejs": "^2.6.1",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mkdirp": "^0.5.1",
|
"mkdirp": "^0.5.1",
|
||||||
"mocha": "^2.5.3",
|
"mocha": "^6.1.4",
|
||||||
"rimraf": "^2.5.3",
|
"rimraf": "^2.6.3",
|
||||||
"selenium-server-standalone-jar": "^2.53.1",
|
"selenium-server-standalone-jar": "^3.141.5",
|
||||||
"selenium-webdriver": "^2.53.3",
|
"selenium-webdriver": "^3.6.0",
|
||||||
"superagent": "^1.4.0"
|
"superagent": "^5.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -9,8 +9,10 @@ var execSync = require('child_process').execSync,
|
|||||||
path = require('path'),
|
path = require('path'),
|
||||||
webdriver = require('selenium-webdriver');
|
webdriver = require('selenium-webdriver');
|
||||||
|
|
||||||
var by = webdriver.By,
|
var by = require('selenium-webdriver').By,
|
||||||
until = webdriver.until;
|
until = require('selenium-webdriver').until,
|
||||||
|
Key = require('selenium-webdriver').Key,
|
||||||
|
Builder = require('selenium-webdriver').Builder;
|
||||||
|
|
||||||
var accessKey = 'admin',
|
var accessKey = 'admin',
|
||||||
secretKey = 'secretkey';
|
secretKey = 'secretkey';
|
||||||
@@ -23,8 +25,7 @@ process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|||||||
describe('Application life cycle test', function () {
|
describe('Application life cycle test', function () {
|
||||||
this.timeout(0);
|
this.timeout(0);
|
||||||
|
|
||||||
var chrome = require('selenium-webdriver/chrome');
|
var server, browser = new Builder().forBrowser('chrome').build();
|
||||||
var server, browser = new chrome.Driver();
|
|
||||||
|
|
||||||
before(function (done) {
|
before(function (done) {
|
||||||
var seleniumJar= require('selenium-server-standalone-jar');
|
var seleniumJar= require('selenium-server-standalone-jar');
|
||||||
|
Reference in New Issue
Block a user