Version 3.13.2
This commit is contained in:
parent
bd883b747c
commit
fd04e1b784
10
CHANGELOG
10
CHANGELOG
|
@ -2352,3 +2352,13 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||
* fix: crash in ResourceMetrics RPC handling concurrent writers by @harshavardhana in https://github.com/minio/minio/pull/19123
|
||||
* fix: re-arrange console-sys to log properly in k8s/docker by @harshavardhana in https://github.com/minio/minio/pull/19129
|
||||
|
||||
[3.13.2]
|
||||
* Update minio to 2024-03-03T17-50-39Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-03-03T17-50-39Z)
|
||||
* Major performance improvement on total connection usage and de-duplicate ILM entries refer #18926
|
||||
* Major performance improvement for Listing() to avoid readdir() under situations for directory lookups refer #19100
|
||||
* Read drive IO stats from sysfs instead of procfs by @Praveenrajmani in #19131
|
||||
* ilm: Select an object when all AND tags are satisfied by @vadmeste in #19134
|
||||
* remove unnecessary 'recreate' code by @harshavardhana in #19136
|
||||
* feat: add userCredentials for nats by @jiuker in #19139
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.13.1",
|
||||
"upstreamVersion": "2024-02-26T09-33-48Z",
|
||||
"version": "3.13.2",
|
||||
"upstreamVersion": "2024-03-03T17-50-39Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"memoryLimit": 2147483648,
|
||||
"httpPort": 8000,
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^122.0.3",
|
||||
"chromedriver": "^122.0.4",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.3.0",
|
||||
"selenium-webdriver": "^4.18.1",
|
||||
|
@ -252,9 +252,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/chromedriver": {
|
||||
"version": "122.0.3",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-122.0.3.tgz",
|
||||
"integrity": "sha512-f7TcCYM6tPxQAl4NQ4KckZ55j62RUfUswbl2iEScs+gI1cqRhzacjMR/FiFx3LUa4S/EZIBgnCx9L+JDhIzVpw==",
|
||||
"version": "122.0.4",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-122.0.4.tgz",
|
||||
"integrity": "sha512-MxkaWaxCqefHyh9UorGzl1F6ZNBgC7pqgT0piAysLZdw20ojSgJ62ljG8SFbhDJqBTegKbmuioa6MQ1m4Czdsg==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@testim/chrome-version": "^1.1.4",
|
||||
|
@ -2019,9 +2019,9 @@
|
|||
}
|
||||
},
|
||||
"chromedriver": {
|
||||
"version": "122.0.3",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-122.0.3.tgz",
|
||||
"integrity": "sha512-f7TcCYM6tPxQAl4NQ4KckZ55j62RUfUswbl2iEScs+gI1cqRhzacjMR/FiFx3LUa4S/EZIBgnCx9L+JDhIzVpw==",
|
||||
"version": "122.0.4",
|
||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-122.0.4.tgz",
|
||||
"integrity": "sha512-MxkaWaxCqefHyh9UorGzl1F6ZNBgC7pqgT0piAysLZdw20ojSgJ62ljG8SFbhDJqBTegKbmuioa6MQ1m4Czdsg==",
|
||||
"requires": {
|
||||
"@testim/chrome-version": "^1.1.4",
|
||||
"axios": "^1.6.7",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^122.0.3",
|
||||
"chromedriver": "^122.0.4",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.3.0",
|
||||
"selenium-webdriver": "^4.18.1",
|
||||
|
|
Loading…
Reference in New Issue