1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-21 12:37:35 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Package Updates
43bde46b81 Update package version to 3.17.0 2024-12-16 07:48:54 +00:00
Renovate Bot
b44db98e35 chore(deps): update dependency minio/minio to release.2024-12-13t22-19-12z
| datasource      | package     | from                         | to                           |
| --------------- | ----------- | ---------------------------- | ---------------------------- |
| github-releases | minio/minio | RELEASE.2024-11-07T00-52-20Z | RELEASE.2024-12-13T22-19-12Z |
2024-12-16 00:20:11 +00:00
5 changed files with 722 additions and 125 deletions

View File

@@ -2731,3 +2731,10 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* decompress audit log properly before sending to remote target by [@​ramondeklein](https://github.com/ramondeklein) in https://github.com/minio/minio/pull/20619 * decompress audit log properly before sending to remote target by [@​ramondeklein](https://github.com/ramondeklein) in https://github.com/minio/minio/pull/20619
* [@​erfantkerfan](https://github.com/erfantkerfan) made their first contribution in https://github.com/minio/minio/pull/20618 * [@​erfantkerfan](https://github.com/erfantkerfan) made their first contribution in https://github.com/minio/minio/pull/20618
[3.17.0]
* Update minio to RELEASE.2024-12-13T22-19-12Z
* [Full Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-12-13T22-19-12Z)
* Fix lint issues from v1.62.0 upgrade by [@​klauspost](https://github.com/klauspost) in https://github.com/minio/minio/pull/20633
* Harden internode DeadlineConn by [@​klauspost](https://github.com/klauspost) in https://github.com/minio/minio/pull/20631
* Make DeadlineConn http.Listener compatible by [@​klauspost](https://github.com/klauspost) in https://github.com/minio/minio/pull/20635

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.16.0", "version": "3.17.0",
"upstreamVersion": "RELEASE.2024-11-07T00-52-20Z", "upstreamVersion": "RELEASE.2024-12-13T22-19-12Z",
"healthCheckPath": "/minio/login", "healthCheckPath": "/minio/login",
"memoryLimit": 2147483648, "memoryLimit": 2147483648,
"httpPort": 8000, "httpPort": 8000,

View File

@@ -4,7 +4,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code WORKDIR /app/code
# renovate: datasource=github-releases depName=minio/minio versioning=regex:^RELEASE\.(?<major>\d{4})-(?<minor>\d{2})-(?<patch>\d{2})T(?<build>.+) # renovate: datasource=github-releases depName=minio/minio versioning=regex:^RELEASE\.(?<major>\d{4})-(?<minor>\d{2})-(?<patch>\d{2})T(?<build>.+)
ARG MINIO_VERSION=RELEASE.2024-11-07T00-52-20Z ARG MINIO_VERSION=RELEASE.2024-12-13T22-19-12Z
RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${MINIO_VERSION} -O /app/code/minio && chmod +x /app/code/minio RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${MINIO_VERSION} -O /app/code/minio && chmod +x /app/code/minio

828
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,10 +9,10 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^130.0.4", "chromedriver": "^131.0.3",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mocha": "^10.8.2", "mocha": "^11.0.1",
"selenium-webdriver": "^4.26.0", "selenium-webdriver": "^4.27.0",
"superagent": "^10.1.1" "superagent": "^10.1.1"
} }
} }