Automatic push 4.3.2

This commit is contained in:
chevereto
2025-05-19 14:20:54 +00:00
parent 6b0305da3b
commit 6a925a04d2
7 changed files with 10 additions and 12 deletions

View File

@@ -1,7 +0,0 @@
Chevereto 4.3.1 (2025-05-16)
- Downgraded AWS SDK to 3.336.15 for improved compatibility
- Fixed bug affecting PHP page routing and editing
- Fixed bug with ExifTool and ExifTran binary detection
- Fixed bug with S3 Compatible storage integration
- Improved FFmpeg binary detection in /dashboard

4
.package/4.3.2.txt Normal file
View File

@@ -0,0 +1,4 @@
Chevereto 4.3.2 (2025-05-19)
- Fixed bug affecting PHP pages functionality
- Fixed bug affecting album dropdown selection

View File

@@ -57,7 +57,7 @@ Install Chevereto following our guides for:
* [cPanel](https://v4-docs.chevereto.com/guides/cpanel/)
* [Plesk](https://v4-docs.chevereto.com/guides/plesk/)
Chevereto is also available at [DigitalOcean Marketplace](https://chevereto.com/go/digitalocean), [Vultr Marketplace](https://chevereto.com/go/vultr), [Installatron](https://installatron.com/chevereto), [Softaculous](https://www.softaculous.com/apps/galleries/Chevereto) and [SwiftWave](https://swiftwave.org/docs/dashboard/swiftwave_app_store/).
Chevereto is also available for installing via [Installatron](https://installatron.com/chevereto), [Softaculous](https://www.softaculous.com/apps/galleries/Chevereto) and [SwiftWave](https://swiftwave.org/docs/dashboard/swiftwave_app_store/).
Review our [Installation docs](https://v4-docs.chevereto.com/application/installing/installation.html) for all alternatives.

View File

@@ -649,6 +649,7 @@ $settings_updates = [
'enable_api_guest' => 0,
],
'4.3.1' => null,
'4.3.2' => null,
];
/**

View File

@@ -9,5 +9,5 @@
* file that was distributed with this source code.
*/
const APP_VERSION = '4.3.1';
const APP_VERSION = '4.3.2';
const APP_VERSION_AKA = 'entrador';

View File

@@ -38,7 +38,7 @@ class KeyValueNull implements KeyValueInterface
public function get(string $key, &$token = null): mixed
{
return null;
return false;
}
public function delete(string $key): bool

View File

@@ -118,8 +118,8 @@ class User
{
$id = is_array($var) ? $var['id'] : $var;
$cacheKey = static::getCacheKey($id, 'albums');
$cached = Cache::instance()->get($cacheKey) ?: [];
if ($cached) {
$cached = Cache::instance()->get($cacheKey);
if (is_array($cached) && count($cached) === 3) {
[$userAlbums, $children, $map] = $cached;
} else {
$userAlbums = [];