mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-08 10:25:02 +00:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
440834cf09 | ||
|
05eaf385d5 | ||
|
3f27a31f65 | ||
|
fe1e252764 | ||
|
6391c53196 | ||
|
4dc37ac1aa | ||
|
fbeaf26fec | ||
|
9d46d755c0 | ||
|
3d3c799657 |
28
CHANGELOG
28
CHANGELOG
@@ -627,3 +627,31 @@
|
||||
* Listing improvements with parallel disk.Walk calls across many nodes, refer #10420
|
||||
* Context now passed around at storage layer for future context support, refer #10321
|
||||
|
||||
[1.135.0]
|
||||
* Update minio to 2020-09-08T23-05-18Z
|
||||
* Minor integer overflow bug in S3 Select. See (#10437) for more details.
|
||||
* Cleanup temp directory of older entries automatically. See (#10439) for more details.
|
||||
* Remove MaxConnsPerHost settings to avoid potential hangs. See (#10438) for more details.
|
||||
* Ignore config values from unknown subsystems. See (#10432) for more details.
|
||||
|
||||
[1.136.0]
|
||||
* Update minio to 2020-09-10T22-02-45Z
|
||||
* Change permissions only when required
|
||||
|
||||
[1.137.0]
|
||||
* Update minio to 2020-09-17T04-49-20Z
|
||||
* [Full changelog](https://github.com/minio/minio/releases/tag/RELEASE.2020-09-17T04-49-20Z)
|
||||
* fix background disk healing. See (#10502) for more details.
|
||||
* Minor fixes in listing, replication and ilm.
|
||||
|
||||
[1.138.0]
|
||||
* Update minio to 2020-09-21T22-31-59Z
|
||||
* [Full changelog](https://github.com/minio/minio/releases/tag/RELEASE.2020-09-21T22-31-59Z)
|
||||
* Support for "directory" objects. See (#10499) for more details.
|
||||
* Improve performance in listobjectparts and completemultipartupload in FS mode. See (#10522, #10510) for more details.
|
||||
* More fixes in FS mode. See (#10512, #10533) for more details.
|
||||
* Replication improvements. See (#10498, #10525) for more details.
|
||||
* Browser: Support for searching objects. See (#10424) for more details.
|
||||
* Miscellaneous fixes in ilm, healing, obd, and request start time logging. See (#10532, #10530, #10504, #10516) for more details.
|
||||
* Changes related to locks. See (#10509, #10508) for more details.
|
||||
|
||||
|
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "1.134.0",
|
||||
"version": "1.138.0",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"httpPort": 8000,
|
||||
"addons": {
|
||||
|
@@ -1,4 +1,4 @@
|
||||
This app packages Minio <upstream>2020-09-05T07-14-49Z</upstream>.
|
||||
This app packages Minio <upstream>2020-09-21T22-31-59Z</upstream>.
|
||||
|
||||
Minio is a distributed object storage server built for cloud applications and devops.
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||
|
||||
ARG VERSION=RELEASE.2020-09-05T07-14-49Z
|
||||
ARG VERSION=RELEASE.2020-09-21T22-31-59Z
|
||||
|
||||
RUN mkdir -p /app/code \
|
||||
&& wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \
|
||||
|
4
start.sh
4
start.sh
@@ -4,8 +4,10 @@ set -eu
|
||||
|
||||
mkdir -p /app/data/data /run/minio/config /run/minio/certs
|
||||
|
||||
# minio is used for backups at times and has a large number of files. optimize by checking if files
|
||||
# are actually in correct chown state
|
||||
echo "==> Changing ownership"
|
||||
chown -R cloudron:cloudron /app/data
|
||||
[[ $(stat --format '%U' /app/data/data) != "cloudron" ]] && chown -R cloudron:cloudron /app/data
|
||||
|
||||
# the --config-dir is deprecated and not used. but without it, minio will try to create $HOME/.minio :/ same for --certs-dir
|
||||
echo "==> Starting minio"
|
||||
|
14
test/test.js
14
test/test.js
@@ -78,9 +78,17 @@ describe('Application life cycle test', function () {
|
||||
}).then(function () {
|
||||
return browser.findElement(by.id('top-right-menu')).click();
|
||||
}).then(function () {
|
||||
return visible(by.xpath('//*[text()="Sign Out "]'));
|
||||
if (app.manifest.version === '1.137.0') {
|
||||
return visible(by.xpath('//*[text()="Sign Out "]'));
|
||||
} else {
|
||||
return visible(by.xpath('//*[contains(text(), "Logout")]'));
|
||||
}
|
||||
}).then(function () {
|
||||
return browser.findElement(by.xpath('//*[text()="Sign Out "]')).click();
|
||||
if (app.manifest.version === '1.137.0') {
|
||||
return browser.findElement(by.xpath('//*[text()="Sign Out "]')).click();
|
||||
} else {
|
||||
return browser.findElement(by.xpath('//*[contains(text(),"Logout")]')).click();
|
||||
}
|
||||
}).then(function () {
|
||||
return browser.wait(until.elementLocated(by.id('accessKey')), TEST_TIMEOUT);
|
||||
}).then(function () {
|
||||
@@ -223,6 +231,8 @@ describe('Application life cycle test', function () {
|
||||
it('can logout', logout);
|
||||
it('can update', function () {
|
||||
execSync('cloudron update --app ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
var inspect = JSON.parse(execSync('cloudron inspect'));
|
||||
app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0];
|
||||
});
|
||||
it('can login', login.bind(null, 'minioadmin', 'minioadmin'));
|
||||
it('has bucket', checkBucket);
|
||||
|
Reference in New Issue
Block a user