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

Compare commits

..

2 Commits

Author SHA1 Message Date
Johannes Zellner
17670769fa Bump version 2024-10-31 09:21:09 +01:00
Renovate Bot
038ebcd485 chore(deps): update dependency minio/minio to release.2024-10-29t16-01-48z
| datasource      | package     | from                         | to                           |
| --------------- | ----------- | ---------------------------- | ---------------------------- |
| github-releases | minio/minio | RELEASE.2024-10-13T13-34-11Z | RELEASE.2024-10-29T16-01-48Z |
2024-10-31 00:19:17 +00:00
3 changed files with 15 additions and 3 deletions

View File

@@ -2706,3 +2706,15 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* Update minio to 2024-10-13T13-34-11Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-10-13T13-34-11Z)
[3.15.2]
* Update minio to 2024-10-29T16-01-48Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-10-29T16-01-48Z)
* Correct the date filter check for batch replication by @shtripat in https://github.com/minio/minio/pull/20569
* Clear omitted fields by @klauspost in https://github.com/minio/minio/pull/20575
* Trace ILM errors by @klauspost in https://github.com/minio/minio/pull/20576
* Fix ILM expire workers exiting by @klauspost in https://github.com/minio/minio/pull/20578
* fix: avoid useless expires value in listing meta by @donatello in https://github.com/minio/minio/pull/20584
* heal: Avoid deadline error with very large objects (#140) by @vadmeste in https://github.com/minio/minio/pull/20586
* heal: large objects fix and avoid .healing.bin corner case premature exit by @vadmeste in https://github.com/minio/minio/pull/20577
* run IAM purge routines deterministically every hr by @donatello in https://github.com/minio/minio/pull/20587

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "3.15.1",
"upstreamVersion": "RELEASE.2024-10-13T13-34-11Z",
"version": "3.15.2",
"upstreamVersion": "RELEASE.2024-10-29T16-01-48Z",
"healthCheckPath": "/minio/login",
"memoryLimit": 2147483648,
"httpPort": 8000,

View File

@@ -4,7 +4,7 @@ RUN mkdir -p /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>.+)
ARG MINIO_VERSION=RELEASE.2024-10-13T13-34-11Z
ARG MINIO_VERSION=RELEASE.2024-10-29T16-01-48Z
RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${MINIO_VERSION} -O /app/code/minio && chmod +x /app/code/minio