Bump version
This commit is contained in:
parent
5f8c83149e
commit
79fcb3ee2e
|
@ -513,3 +513,11 @@
|
||||||
* Improvements to online status. See (#9858, #9808) for more details.
|
* Improvements to online status. See (#9858, #9808) for more details.
|
||||||
* pop entries from each drives in parallel. See (#9918) for more details.
|
* pop entries from each drives in parallel. See (#9918) for more details.
|
||||||
|
|
||||||
|
[1.118.0]
|
||||||
|
* Update minio to 2020-07-12T19-14-17Z
|
||||||
|
* Avoid startup lock-up when nodes are coming online, fixes an issue with healthcheck routine which ended up reusing a downed client resulting in pereptual offline of that node - see #10026 for more details.
|
||||||
|
* Finally fix the CORS regression introduced by incompatible usage after gorilla/mux update
|
||||||
|
* fix: avoid broken link when preview image (#10021) (07/12/20) (Harshavardhana)
|
||||||
|
* fix: cors handling again for not just OPTIONS request (#10025) (07/12/20) (Harshavardhana)
|
||||||
|
* fix: make sure to use new restClient for healthcheck (#10026) (07/11/20) (Harshavardhana)
|
||||||
|
* [Full changelog](https://github.com/minio/minio/releases/tag/RELEASE.2020-07-12T19-14-17Z)
|
||||||
|
|
|
@ -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.117.0",
|
"version": "1.118.0",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages Minio <upstream>2020-07-02T00-15-09Z</upstream>.
|
This app packages Minio <upstream>2020-07-12T19-14-17Z</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,6 +1,6 @@
|
||||||
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2020-07-02T00-15-09Z
|
ARG VERSION=RELEASE.2020-07-12T19-14-17Z
|
||||||
|
|
||||||
RUN mkdir -p /app/code \
|
RUN mkdir -p /app/code \
|
||||||
&& wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \
|
&& wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \
|
||||||
|
|
Loading…
Reference in New Issue