Version 2.4.7
This commit is contained in:
parent
0d171ddb5a
commit
fecebfd7e1
|
@ -1083,4 +1083,12 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||
* Update minio to 2022-03-26T06-49-28Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-03-26T06-49-28Z)
|
||||
|
||||
[2.4.7]
|
||||
* Update minio to 2022-04-01T03-41-39Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-04-01T03-41-39Z)
|
||||
* Always get the actual object size in bulk SSE-S3 by @vadmeste in #14637
|
||||
* listing: decrypt only SSE-S3 single-part ETags by @aead in #14638
|
||||
* Load IAM with a single listing call by @donatello in #14640
|
||||
* fix: multiple pool setup return incorrect DeleteMarker metadata by @harshavardhana in #14642
|
||||
* Quick type for fix ttfb entry in table by @eco-minio in #14647
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "2.4.6",
|
||||
"upstreamVersion": "2022-03-26T06-49-28Z",
|
||||
"version": "2.4.7",
|
||||
"upstreamVersion": "2022-04-01T03-41-39Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"httpPort": 8000,
|
||||
"httpPorts": {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^99.0.0",
|
||||
"chromedriver": "^100.0.0",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^9.2.2",
|
||||
"selenium-webdriver": "^4.1.1",
|
||||
|
@ -283,9 +283,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/chromedriver": {
|
||||
"version": "99.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-99.0.0.tgz",
|
||||
"integrity": "sha512-pyB+5LuyZdb7EBPL3i5D5yucZUD+SlkdiUtmpjaEnLd9zAXp+SvD/hP5xF4l/ZmWvUo/1ZLxAI1YBdhazGTpgA==",
|
||||
"version": "100.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-100.0.0.tgz",
|
||||
"integrity": "sha512-oLfB0IgFEGY9qYpFQO/BNSXbPw7bgfJUN5VX8Okps9W2qNT4IqKh5hDwKWtpUIQNI6K3ToWe2/J5NdpurTY02g==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@testim/chrome-version": "^1.1.2",
|
||||
|
@ -2067,9 +2067,9 @@
|
|||
}
|
||||
},
|
||||
"chromedriver": {
|
||||
"version": "99.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-99.0.0.tgz",
|
||||
"integrity": "sha512-pyB+5LuyZdb7EBPL3i5D5yucZUD+SlkdiUtmpjaEnLd9zAXp+SvD/hP5xF4l/ZmWvUo/1ZLxAI1YBdhazGTpgA==",
|
||||
"version": "100.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-100.0.0.tgz",
|
||||
"integrity": "sha512-oLfB0IgFEGY9qYpFQO/BNSXbPw7bgfJUN5VX8Okps9W2qNT4IqKh5hDwKWtpUIQNI6K3ToWe2/J5NdpurTY02g==",
|
||||
"requires": {
|
||||
"@testim/chrome-version": "^1.1.2",
|
||||
"axios": "^0.24.0",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^99.0.0",
|
||||
"chromedriver": "^100.0.0",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^9.2.2",
|
||||
"selenium-webdriver": "^4.1.1",
|
||||
|
|
Loading…
Reference in New Issue