diff --git a/composer.lock b/composer.lock index 1a77d35..bf73e1b 100644 --- a/composer.lock +++ b/composer.lock @@ -4405,12 +4405,12 @@ "source": { "type": "git", "url": "https://github.com/monarc-project/zm-core.git", - "reference": "d9dec0dd80742a0cfe52fc2bb123319310bccae8" + "reference": "50d72bfc6a411c0d02a5ead882d953cc44341af8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/monarc-project/zm-core/zipball/d9dec0dd80742a0cfe52fc2bb123319310bccae8", - "reference": "d9dec0dd80742a0cfe52fc2bb123319310bccae8", + "url": "https://api.github.com/repos/monarc-project/zm-core/zipball/50d72bfc6a411c0d02a5ead882d953cc44341af8", + "reference": "50d72bfc6a411c0d02a5ead882d953cc44341af8", "shasum": "" }, "require": { @@ -4488,7 +4488,7 @@ "issues": "https://github.com/monarc-project/zm-core/issues", "source": "https://github.com/monarc-project/zm-core/tree/v2.10.2" }, - "time": "2021-02-24T09:27:04+00:00" + "time": "2021-03-01T14:00:03+00:00" }, { "name": "monarc/frontoffice", @@ -7707,12 +7707,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "640ff0b5dcacc0958534c8c0255b90697f3eb2a8" + "reference": "a6bfc5a1416f0dde1f53b7737b2cf983352737b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/640ff0b5dcacc0958534c8c0255b90697f3eb2a8", - "reference": "640ff0b5dcacc0958534c8c0255b90697f3eb2a8", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a6bfc5a1416f0dde1f53b7737b2cf983352737b8", + "reference": "a6bfc5a1416f0dde1f53b7737b2cf983352737b8", "shasum": "" }, "conflict": { @@ -7854,7 +7854,7 @@ "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", - "pimcore/pimcore": "<6.3", + "pimcore/pimcore": "<6.8.8", "pocketmine/pocketmine-mp": "<3.15.4", "prestashop/autoupgrade": ">=4,<4.10.1", "prestashop/contactform": ">1.0.1,<4.3", @@ -7894,7 +7894,7 @@ "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", - "smarty/smarty": "<3.1.33", + "smarty/smarty": "<3.1.39", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spoonity/tcpdf": "<6.2.22", @@ -8026,7 +8026,7 @@ "type": "tidelift" } ], - "time": "2021-02-18T21:02:27+00:00" + "time": "2021-02-26T20:02:39+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", diff --git a/scripts/fix_clients_dbs.sh b/scripts/fix_clients_dbs.sh index a79317f..56207a5 100644 --- a/scripts/fix_clients_dbs.sh +++ b/scripts/fix_clients_dbs.sh @@ -6,5 +6,6 @@ do db_pwd=$(grep 'password' $conf_file | head -1 | sed "s/'password' => '//" | sed "s/',//" | sed 's/^[ \t]*//;s/[ \t]*$//') echo "Alter anrs table raw size for $db_user ..." mysql -u $db_user -p$db_pwd $db_user -e "ALTER TABLE anrs ROW_FORMAT=DYNAMIC;" + mysql -u $db_user -p$db_pwd $db_user -e "OPTIMIZE TABLE anrs;" echo "Done." done