Bump version
This commit is contained in:
parent
7b5a6629b3
commit
a3e521d243
20
CHANGELOG
20
CHANGELOG
|
@ -1242,3 +1242,23 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||||
* fips: simplify TLS configuration by @aead in #15127
|
* fips: simplify TLS configuration by @aead in #15127
|
||||||
* fix: cant parse comment without '=' in environment file by @anoworl in #15130
|
* fix: cant parse comment without '=' in environment file by @anoworl in #15130
|
||||||
* add go1.18 specific curve preferences by @harshavardhana in #15132
|
* add go1.18 specific curve preferences by @harshavardhana in #15132
|
||||||
|
|
||||||
|
[2.7.7]
|
||||||
|
* Update minio to 2022-06-30T20-58-09Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-06-30T20-58-09Z)
|
||||||
|
* Supports parity configuration of '0', '1' enabling support for 2,3 drive setups for erasure coding.
|
||||||
|
* add license banner for GNU AGPLv3 by @harshavardhana in #15178
|
||||||
|
* save MinIO version with each version (8-bytes extra) by @harshavardhana in #15170
|
||||||
|
* Remove unnecessary code in WalkDir() by @vadmeste in #15168
|
||||||
|
* perform object sweep after equeue the latest CopyObject() by @harshavardhana in #15183
|
||||||
|
* Upgrade reedsolomon/compression packages by @klauspost in #15182
|
||||||
|
* Revert proxying requests with precondition errors by @vadmeste in #15180
|
||||||
|
* allow support for parity '0', '1' enabling support for 2,3 drive setups by @harshavardhana in #15171
|
||||||
|
* handle missing funcNames for handlers by @harshavardhana in #15188
|
||||||
|
* update banner to reflect the final agreed UI by @harshavardhana in #15192
|
||||||
|
* site healing: Skip stale bucket metadata updates from peer by @poornas in #15186
|
||||||
|
* de-couple caller context to avoid internal races by @harshavardhana in #15195
|
||||||
|
* Save minio version in xl.meta while healing in outdated disks by @vadmeste in #15181
|
||||||
|
* finalize startup-banner and remove unnecessary logs by @harshavardhana in #15202
|
||||||
|
* Make ReqInfo concurrency safe by @klauspost in #15204
|
||||||
|
* update banner with version+runtime by @harshavardhana in #15206
|
||||||
|
|
|
@ -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": "2.7.6",
|
"version": "2.7.7",
|
||||||
"upstreamVersion": "2022-06-25T15-50-16Z",
|
"upstreamVersion": "2022-06-30T20-58-09Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 805306368,
|
"memoryLimit": 805306368,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
|
|
@ -3,7 +3,7 @@ FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd1
|
||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2022-06-25T15-50-16Z
|
ARG VERSION=RELEASE.2022-06-30T20-58-09Z
|
||||||
ARG MC_VERSION=RELEASE.2022-06-26T18-51-48Z
|
ARG MC_VERSION=RELEASE.2022-06-26T18-51-48Z
|
||||||
|
|
||||||
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/
|
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/
|
||||||
|
|
Loading…
Reference in New Issue