1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-26 06:57:25 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Johannes Zellner
09e82cd3e3 Bump version 2024-09-14 18:05:12 +02:00
Johannes Zellner
f75118e15a Update test deps 2024-09-14 17:43:27 +02:00
Johannes Zellner
4f5fadaa8a Update to 2024-09-13T20-26-02Z 2024-09-14 17:43:03 +02:00
5 changed files with 17 additions and 11 deletions

View File

@@ -2676,3 +2676,9 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* Skip non existent ldap entities while import (#20352) * Skip non existent ldap entities while import (#20352)
* Dont hard error for nonexisting LDAP entries instead of logging them * Dont hard error for nonexisting LDAP entries instead of logging them
[3.13.39]
* Update minio to 2024-09-13T20-26-02Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-09-13T20-26-02Z)
* PutObject() for multi-pooled was holding large region locks, which was not necessary. This affects almost all slowpoke clients and lengthy uploads.
* Re-arrange locks for CompleteMultipart, PutObject to be close to rename()

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "Distributed object storage", "tagline": "Distributed object storage",
"version": "3.13.38", "version": "3.13.39",
"upstreamVersion": "RELEASE.2024-09-09T16-59-28Z", "upstreamVersion": "RELEASE.2024-09-13T20-26-02Z",
"healthCheckPath": "/minio/login", "healthCheckPath": "/minio/login",
"memoryLimit": 2147483648, "memoryLimit": 2147483648,
"httpPort": 8000, "httpPort": 8000,

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
RUN mkdir -p /app/code RUN mkdir -p /app/code
WORKDIR /app/code WORKDIR /app/code
ARG VERSION=RELEASE.2024-09-09T16-59-28Z ARG VERSION=RELEASE.2024-09-13T20-26-02Z
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/ # sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/
# RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio # RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio

14
test/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^128.0.1", "chromedriver": "^128.0.3",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mocha": "^10.7.3", "mocha": "^10.7.3",
"selenium-webdriver": "^4.24.0", "selenium-webdriver": "^4.24.0",
@@ -262,9 +262,9 @@
} }
}, },
"node_modules/chromedriver": { "node_modules/chromedriver": {
"version": "128.0.1", "version": "128.0.3",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-128.0.1.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-128.0.3.tgz",
"integrity": "sha512-UmWqZXXAyuRa37pE+lnU46vJcCM/y0ddF015LHxycEOYfuqsK7k9ZxJuXCQNWbws9e7FAMQj/GJZT92WPgis0g==", "integrity": "sha512-Xn/bknOpGlY9tKinwS/hVWeNblSeZvbbJbF8XZ73X1jeWfAFPRXx3fMLdNNz8DqruDbx3cKEJ5wR3mnst6G3iw==",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@testim/chrome-version": "^1.1.4", "@testim/chrome-version": "^1.1.4",
@@ -2033,9 +2033,9 @@
} }
}, },
"chromedriver": { "chromedriver": {
"version": "128.0.1", "version": "128.0.3",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-128.0.1.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-128.0.3.tgz",
"integrity": "sha512-UmWqZXXAyuRa37pE+lnU46vJcCM/y0ddF015LHxycEOYfuqsK7k9ZxJuXCQNWbws9e7FAMQj/GJZT92WPgis0g==", "integrity": "sha512-Xn/bknOpGlY9tKinwS/hVWeNblSeZvbbJbF8XZ73X1jeWfAFPRXx3fMLdNNz8DqruDbx3cKEJ5wR3mnst6G3iw==",
"requires": { "requires": {
"@testim/chrome-version": "^1.1.4", "@testim/chrome-version": "^1.1.4",
"axios": "^1.7.4", "axios": "^1.7.4",

View File

@@ -9,7 +9,7 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^128.0.1", "chromedriver": "^128.0.3",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mocha": "^10.7.3", "mocha": "^10.7.3",
"selenium-webdriver": "^4.24.0", "selenium-webdriver": "^4.24.0",