Version 3.4.20
This commit is contained in:
parent
f6a78ee7cb
commit
e00e95eb94
10
CHANGELOG
10
CHANGELOG
|
@ -1780,3 +1780,13 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||
* heal: Pick maximally occuring modTime in quorum by @krisis in #17071
|
||||
* fix: DeleteBucket for peers() must recreate bucket upon errors by @harshavardhana in #17079
|
||||
* fix: initialize reverse proxy forwarder with right public certs by @harshavardhana in #17080
|
||||
|
||||
[3.4.20]
|
||||
* Update minio to
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-05-04T21-44-30Z)
|
||||
* allow root user to be disabled via config settings by @harshavardhana in #17089
|
||||
* fix: remove active healing on .minio.sys/ during startup by @harshavardhana in #17072
|
||||
* helm: align chart properties with naming convention by @dnskr in #17065
|
||||
* optimization use small blocks up to 64KB by @klauspost in #17107
|
||||
* Support systemd notify protocol by @WGH- in #17062
|
||||
* fix: store notification events immediately for persistent queues by @Praveenrajmani in #17112
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.4.19",
|
||||
"upstreamVersion": "2023-04-28T18-11-17Z",
|
||||
"version": "3.4.20",
|
||||
"upstreamVersion": "2023-05-04T21-44-30Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"memoryLimit": 805306368,
|
||||
"httpPort": 8000,
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^112.0.0",
|
||||
"chromedriver": "^112.0.1",
|
||||
"delay": "^5.0.0",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
|
@ -229,9 +229,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/chromedriver": {
|
||||
"version": "112.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.0.tgz",
|
||||
"integrity": "sha512-fEw1tI05dmK1KK8MGh99LAppP7zCOPEXUxxbYX5wpIBCCmKasyrwZhk/qsdnxJYKd/h0TfiHvGEj7ReDQXW1AA==",
|
||||
"version": "112.0.1",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.1.tgz",
|
||||
"integrity": "sha512-ieQzvellbtPY4MUrFzzayC1bZa/HoBsGXejUQJhAPWcYALxtkjUZNUYWbojMjIzf8iIhVda9VvdXiRKqdlN7ow==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@testim/chrome-version": "^1.1.3",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"chromedriver": "bin/chromedriver"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
"node": ">=16"
|
||||
}
|
||||
},
|
||||
"node_modules/cliui": {
|
||||
|
@ -1720,9 +1720,9 @@
|
|||
}
|
||||
},
|
||||
"chromedriver": {
|
||||
"version": "112.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.0.tgz",
|
||||
"integrity": "sha512-fEw1tI05dmK1KK8MGh99LAppP7zCOPEXUxxbYX5wpIBCCmKasyrwZhk/qsdnxJYKd/h0TfiHvGEj7ReDQXW1AA==",
|
||||
"version": "112.0.1",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.1.tgz",
|
||||
"integrity": "sha512-ieQzvellbtPY4MUrFzzayC1bZa/HoBsGXejUQJhAPWcYALxtkjUZNUYWbojMjIzf8iIhVda9VvdXiRKqdlN7ow==",
|
||||
"requires": {
|
||||
"@testim/chrome-version": "^1.1.3",
|
||||
"axios": "^1.2.1",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^112.0.0",
|
||||
"chromedriver": "^112.0.1",
|
||||
"delay": "^5.0.0",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
|
|
Loading…
Reference in New Issue