From 79fcb3ee2ed463735531ceab65500b451f31d330 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 13 Jul 2020 11:36:32 +0200 Subject: [PATCH] Bump version --- CHANGELOG | 22 +++++++++++++++------- CloudronManifest.json | 2 +- DESCRIPTION.md | 2 +- Dockerfile | 2 +- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4b97aa9..17adb0b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -91,7 +91,7 @@ * Quorum based listing for XL (#5475) * fs.json file should be closed in CompleteMultipartUpload (#5482) * simplify storage class validation (#5470) -* Remove stale code from minio server (#5479) +* Remove stale code from minio server (#5479) [1.8.0] * Update minio to 2018-03-12T21-25-28Z @@ -107,7 +107,7 @@ * Support SSE-C multipart source objects in CopyObject (#5603) * Handle incoming proxy requests ip, scheme (#5591) * Make sure to filter out internal metadata (#5601) -* Use toAPIErrorCode in HeadObject handler when decrypting request fails (#5600) +* Use toAPIErrorCode in HeadObject handler when decrypting request fails (#5600) [1.9.0] * Update minio to 2018-03-16T22-52-12Z @@ -144,7 +144,7 @@ * Remove logging of redundant messages when running Minio server. * Upgrading to this release will automatically migrate any erroneous bucket policies to strict S3 compliant bucket policies. Please check all your bucket policies after upgrading to this release. * Fix s3 compatibility fixes for getBucketLocation,headBucket,deleteBucket (#5842) (04/23/18) -* Disable "chunked" uploading by the GCS client for objects smaller than the chunk size. (#5835) (04/20/18) +* Disable "chunked" uploading by the GCS client for objects smaller than the chunk size. (#5835) (04/20/18) [1.15.0] * Update minio to 2018-05-04T23-13-12Z @@ -154,7 +154,7 @@ * fs: fix logging by not logging common scenarios (#5882) (05/02/18) * Return NoSuchKey for anonReqs with s3:ListBucket policy (#5876) (05/01/18) * Remove s3:ListObjects policy action to be in sync with AWS-S3 (#5875) (05/01/18) -* Copy an object without user-defined metadata for Azure gateway (#5872) (05/02/18) +* Copy an object without user-defined metadata for Azure gateway (#5872) (05/02/18) [1.16.0] * Update minio to 2018-05-11T00-29-24Z @@ -172,7 +172,7 @@ * Update minio to 2018-06-09T03-43-35Z [1.21.0] -* Update minio to 2018-06-22T23-48-46Z +* Update minio to 2018-06-22T23-48-46Z [1.22.0] * Update minio to 2018-06-29T02-11-29Z @@ -197,7 +197,7 @@ * Log x-amz-request-id as log and XML error response (#6173) (07/20/18) * Remove ppc64le support from .travis.yml (#6180) (07/20/18) * Remove unused functions and constants (#6175) (07/20/18) -* Do not trace HTTP body of PostPolicyBuckethandler (#6177) (07/20/18) +* Do not trace HTTP body of PostPolicyBuckethandler (#6177) (07/20/18) [1.25.0] * Update minio to 2018-07-31T02-11-47Z @@ -305,7 +305,7 @@ [1.56.0] * Update miniot to 2019-04-04T18-31-46Z -* (security) fix privilege escalation against inter-node communication +* (security) fix privilege escalation against inter-node communication * (security) Validate if bucket names are internal * canonicalize ETag correctly @@ -513,3 +513,11 @@ * Improvements to online status. See (#9858, #9808) 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) diff --git a/CloudronManifest.json b/CloudronManifest.json index dac03a3..3717a03 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "1.117.0", + "version": "1.118.0", "healthCheckPath": "/minio/login", "httpPort": 8000, "addons": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 2139843..ea3f080 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2020-07-02T00-15-09Z. +This app packages Minio 2020-07-12T19-14-17Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/Dockerfile b/Dockerfile index d8be5bf..5114c07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ 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 \ && wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \