From 2c6f9ae61c4c4cbc8d9aa03fe25b66e7ea839093 Mon Sep 17 00:00:00 2001 From: Riddhesh Sanghvi Date: Thu, 13 Feb 2025 16:54:54 +0530 Subject: [PATCH 1/5] Add network cleanup post update Signed-off-by: Riddhesh Sanghvi --- php/EE/Migration/Containers.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/php/EE/Migration/Containers.php b/php/EE/Migration/Containers.php index cd64b3929..aee32e6e0 100644 --- a/php/EE/Migration/Containers.php +++ b/php/EE/Migration/Containers.php @@ -108,7 +108,7 @@ public static function save_upgraded_image_versions( $current_versions, $new_ver self::$rsp->add_step( 'prune-old-docker-images', - 'EE\Migration\Containers::image_cleanup', + 'EE\Migration\Containers::docker_cleanup', null, null, null @@ -119,8 +119,9 @@ public static function save_upgraded_image_versions( $current_versions, $new_ver /** * Prune old and extra EE Docker images. */ - public static function image_cleanup() { + public static function docker_cleanup() { EE::exec( 'docker image prune -af --filter=label=org.label-schema.vendor="EasyEngine"' ); + EE::exec( 'docker network prune -f --filter=label=org.label-schema.vendor="EasyEngine"' ); } /** From af6aa4a9536e87cc5ced9d72b9f2c3fe00eeadad Mon Sep 17 00:00:00 2001 From: Riddhesh Sanghvi Date: Thu, 13 Feb 2025 17:24:54 +0530 Subject: [PATCH 2/5] Skip download of 8.4 Signed-off-by: Riddhesh Sanghvi --- php/EE/Migration/Containers.php | 1 + 1 file changed, 1 insertion(+) diff --git a/php/EE/Migration/Containers.php b/php/EE/Migration/Containers.php index aee32e6e0..70101a0ca 100644 --- a/php/EE/Migration/Containers.php +++ b/php/EE/Migration/Containers.php @@ -38,6 +38,7 @@ public static function start_container_migration() { 'easyengine/php8.1', 'easyengine/php8.2', 'easyengine/php8.3', + 'easyengine/php8.4', 'easyengine/newrelic-daemon', ]; From 3694a532a4964090cd040a43982179a10b86c9f0 Mon Sep 17 00:00:00 2001 From: Riddhesh Sanghvi Date: Thu, 13 Feb 2025 17:25:15 +0530 Subject: [PATCH 3/5] Update images for v4.8.1 Signed-off-by: Riddhesh Sanghvi --- img-versions.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/img-versions.json b/img-versions.json index 7a4cadefc..fa334a567 100644 --- a/img-versions.json +++ b/img-versions.json @@ -1,8 +1,8 @@ { - "easyengine/cron": "v4.7.3", + "easyengine/cron": "v4.8.1", "easyengine/mailhog": "v4.6.5", "easyengine/mariadb": "v4.6.6", - "easyengine/nginx-proxy": "v4.8.0", + "easyengine/nginx-proxy": "v4.8.1", "easyengine/nginx": "v4.7.6", "easyengine/php": "v4.6.6", "easyengine/php5.6": "v4.7.4", @@ -10,12 +10,12 @@ "easyengine/php7.2": "v4.7.4", "easyengine/php7.3": "v4.7.4", "easyengine/php7.4": "v4.7.4", - "easyengine/php8.0": "v4.8.0", - "easyengine/php8.1": "v4.8.0", - "easyengine/php8.2": "v4.8.0", - "easyengine/php8.3": "v4.8.0", + "easyengine/php8.0": "v4.8.1", + "easyengine/php8.1": "v4.8.1", + "easyengine/php8.2": "v4.8.1", + "easyengine/php8.3": "v4.8.1", "easyengine/php8.4": "v4.8.0", - "easyengine/postfix": "v4.8.0", - "easyengine/redis": "v4.7.6", - "easyengine/newrelic-daemon": "v4.7.4" + "easyengine/postfix": "v4.8.1", + "easyengine/redis": "v4.8.1", + "easyengine/newrelic-daemon": "v4.8.1" } From a2f8ce26366d35e9abe0aeac17c8acbe6ab18e24 Mon Sep 17 00:00:00 2001 From: Riddhesh Sanghvi Date: Thu, 13 Feb 2025 17:25:27 +0530 Subject: [PATCH 4/5] Update composer packages for v4.8.1 Signed-off-by: Riddhesh Sanghvi --- composer.json | 8 +- composer.lock | 278 +++++++++++++++++++++++++------------------------- 2 files changed, 145 insertions(+), 141 deletions(-) diff --git a/composer.json b/composer.json index 7c0238ea3..bb7dd6be5 100644 --- a/composer.json +++ b/composer.json @@ -39,9 +39,9 @@ "easyengine/mailhog-command": "v1.0.3", "easyengine/service-command": "v1.6.1", "easyengine/shell-command": "v1.1.3", - "easyengine/site-command": "v3.3.3", - "easyengine/site-type-php": "v1.9.0", - "easyengine/site-type-wp": "v1.9.0", + "easyengine/site-command": "v3.3.5", + "easyengine/site-type-php": "v1.9.1", + "easyengine/site-type-wp": "v1.9.1", "monolog/monolog": "1.24.0", "mustache/mustache": "2.14.1", "rmccue/requests": "1.8.0", @@ -52,7 +52,7 @@ "symfony/event-dispatcher": "4.4.*", "symfony/filesystem": "4.4.*", "symfony/finder": "4.4.*", - "symfony/process": "4.4.*", + "symfony/process": "5.4.*", "symfony/translation": "4.4.*", "symfony/yaml": "4.4.*", "wp-cli/mustangostang-spyc": "0.6.3", diff --git a/composer.lock b/composer.lock index 5a96e5e18..2c71f191b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b8c6daceccead49d779e0d125186376e", + "content-hash": "7d5f761634519e35800eec5c52544c5c", "packages": [ { "name": "acmephp/core", @@ -151,16 +151,16 @@ }, { "name": "cloudflare/sdk", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/cloudflare/cloudflare-php.git", - "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e" + "reference": "2d3f198773e865b5de2357d7bdbc52bdf42e8f97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cloudflare/cloudflare-php/zipball/fdfc656aa8b78016f4722acec30b54136c027d8e", - "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e", + "url": "https://api.github.com/repos/cloudflare/cloudflare-php/zipball/2d3f198773e865b5de2357d7bdbc52bdf42e8f97", + "reference": "2d3f198773e865b5de2357d7bdbc52bdf42e8f97", "shasum": "" }, "require": { @@ -193,22 +193,22 @@ "description": "PHP binding for v4 of the Cloudflare Client API.", "support": { "issues": "https://github.com/cloudflare/cloudflare-php/issues", - "source": "https://github.com/cloudflare/cloudflare-php/tree/1.3.0" + "source": "https://github.com/cloudflare/cloudflare-php/tree/1.4.0" }, - "time": "2021-10-13T03:40:33+00:00" + "time": "2024-12-17T23:18:20+00:00" }, { "name": "composer/ca-bundle", - "version": "1.5.3", + "version": "1.5.5", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2" + "reference": "08c50d5ec4c6ced7d0271d2862dec8c1033283e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3b1fc3f0be055baa7c6258b1467849c3e8204eb2", - "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/08c50d5ec4c6ced7d0271d2862dec8c1033283e6", + "reference": "08c50d5ec4c6ced7d0271d2862dec8c1033283e6", "shasum": "" }, "require": { @@ -255,7 +255,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.5.3" + "source": "https://github.com/composer/ca-bundle/tree/1.5.5" }, "funding": [ { @@ -271,7 +271,7 @@ "type": "tidelift" } ], - "time": "2024-11-04T10:15:26+00:00" + "time": "2025-01-08T16:17:16+00:00" }, { "name": "composer/composer", @@ -799,15 +799,15 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "admin-tools", "admin-tools enable", "admin-tools disable" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -845,9 +845,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "auth", @@ -855,7 +852,10 @@ "auth delete", "auth list", "auth update" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -895,15 +895,15 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "config", "config set", "config get" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -941,9 +941,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "cron", @@ -952,7 +949,10 @@ "cron update", "cron list", "cron run-now" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -992,13 +992,13 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "log show" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1035,16 +1035,16 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "mailhog", "mailhog enable", "mailhog disable", "mailhog status" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1082,9 +1082,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "service", @@ -1092,7 +1089,10 @@ "service disable", "service restart", "service reload" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1131,13 +1131,13 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "shell" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1161,16 +1161,16 @@ }, { "name": "easyengine/site-command", - "version": "v3.3.3", + "version": "v3.3.5", "source": { "type": "git", "url": "https://github.com/EasyEngine/site-command.git", - "reference": "d930519cc0ad6c9fe81bd17f23692e9f2830feb2" + "reference": "8f509d82070909636101e1e41b72581e2b71cef3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyEngine/site-command/zipball/d930519cc0ad6c9fe81bd17f23692e9f2830feb2", - "reference": "d930519cc0ad6c9fe81bd17f23692e9f2830feb2", + "url": "https://api.github.com/repos/EasyEngine/site-command/zipball/8f509d82070909636101e1e41b72581e2b71cef3", + "reference": "8f509d82070909636101e1e41b72581e2b71cef3", "shasum": "" }, "require": { @@ -1184,9 +1184,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "site create --type=html", @@ -1202,7 +1199,10 @@ "site restart --type=html", "site share", "site clean" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1231,22 +1231,22 @@ "homepage": "https://github.com/easyengine/site-command", "support": { "issues": "https://github.com/EasyEngine/site-command/issues", - "source": "https://github.com/EasyEngine/site-command/tree/v3.3.3" + "source": "https://github.com/EasyEngine/site-command/tree/v3.3.5" }, - "time": "2024-11-26T09:06:35+00:00" + "time": "2025-02-13T11:47:17+00:00" }, { "name": "easyengine/site-type-php", - "version": "v1.9.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/EasyEngine/site-type-php.git", - "reference": "7a38595e198650a2091c1497e3ce54c5c5485587" + "reference": "523df86ffc70b29b8c93aa9a88002bf53334d887" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyEngine/site-type-php/zipball/7a38595e198650a2091c1497e3ce54c5c5485587", - "reference": "7a38595e198650a2091c1497e3ce54c5c5485587", + "url": "https://api.github.com/repos/EasyEngine/site-type-php/zipball/523df86ffc70b29b8c93aa9a88002bf53334d887", + "reference": "523df86ffc70b29b8c93aa9a88002bf53334d887", "shasum": "" }, "require-dev": { @@ -1254,9 +1254,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "site create --type=php", @@ -1272,7 +1269,10 @@ "site restart --type=php", "site share", "site clean" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1290,22 +1290,22 @@ "homepage": "https://github.com/easyengine/site-type-php", "support": { "issues": "https://github.com/EasyEngine/site-type-php/issues", - "source": "https://github.com/EasyEngine/site-type-php/tree/v1.9.0" + "source": "https://github.com/EasyEngine/site-type-php/tree/v1.9.1" }, - "time": "2024-11-26T08:38:27+00:00" + "time": "2025-02-13T11:48:36+00:00" }, { "name": "easyengine/site-type-wp", - "version": "v1.9.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/EasyEngine/site-type-wp.git", - "reference": "afcba8ca7429f6a8dc4db608c5acab36921a1193" + "reference": "f95ab4c2f1d6c38fb7a61f24825ec9aac405d4cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyEngine/site-type-wp/zipball/afcba8ca7429f6a8dc4db608c5acab36921a1193", - "reference": "afcba8ca7429f6a8dc4db608c5acab36921a1193", + "url": "https://api.github.com/repos/EasyEngine/site-type-wp/zipball/f95ab4c2f1d6c38fb7a61f24825ec9aac405d4cc", + "reference": "f95ab4c2f1d6c38fb7a61f24825ec9aac405d4cc", "shasum": "" }, "require-dev": { @@ -1313,9 +1313,6 @@ }, "type": "ee-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ "site create --type=wp", @@ -1331,7 +1328,10 @@ "site restart --type=wp", "site share", "site clean" - ] + ], + "branch-alias": { + "dev-master": "1.x-dev" + } }, "autoload": { "files": [ @@ -1349,9 +1349,9 @@ "homepage": "https://github.com/easyengine/site-type-wp", "support": { "issues": "https://github.com/EasyEngine/site-type-wp/issues", - "source": "https://github.com/EasyEngine/site-type-wp/tree/v1.9.0" + "source": "https://github.com/EasyEngine/site-type-wp/tree/v1.9.1" }, - "time": "2024-11-26T08:38:22+00:00" + "time": "2025-02-13T11:48:15+00:00" }, { "name": "guzzlehttp/guzzle", @@ -2830,16 +2830,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d" + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918", + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918", "shasum": "" }, "require": { @@ -2847,12 +2847,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -2877,7 +2877,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4" }, "funding": [ { @@ -2893,7 +2893,7 @@ "type": "tidelift" } ], - "time": "2023-01-24T14:02:46+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/event-dispatcher", @@ -3002,12 +3002,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "1.1-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -3209,8 +3209,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3288,8 +3288,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3362,8 +3362,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3438,8 +3438,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3518,8 +3518,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3576,20 +3576,20 @@ }, { "name": "symfony/process", - "version": "v4.4.44", + "version": "v5.4.47", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2" + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", + "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d", + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d", "shasum": "" }, "require": { - "php": ">=7.1.3", + "php": ">=7.2.5", "symfony/polyfill-php80": "^1.16" }, "type": "library", @@ -3618,7 +3618,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v4.4.44" + "source": "https://github.com/symfony/process/tree/v5.4.47" }, "funding": [ { @@ -3634,7 +3634,7 @@ "type": "tidelift" } ], - "time": "2022-06-27T13:16:42+00:00" + "time": "2024-11-06T11:36:42+00:00" }, { "name": "symfony/serializer", @@ -3720,16 +3720,16 @@ }, { "name": "symfony/service-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3" + "reference": "f37b419f7aea2e9abf10abd261832cace12e3300" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3", - "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300", + "reference": "f37b419f7aea2e9abf10abd261832cace12e3300", "shasum": "" }, "require": { @@ -3745,12 +3745,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -3783,7 +3783,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.4" }, "funding": [ { @@ -3799,7 +3799,7 @@ "type": "tidelift" } ], - "time": "2023-04-21T15:04:16+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/translation", @@ -3892,16 +3892,16 @@ }, { "name": "symfony/translation-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664" + "reference": "450d4172653f38818657022252f9d81be89ee9a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8", + "reference": "450d4172653f38818657022252f9d81be89ee9a8", "shasum": "" }, "require": { @@ -3912,12 +3912,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -3950,7 +3950,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4" }, "funding": [ { @@ -3966,7 +3966,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/yaml", @@ -4542,16 +4542,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.12.1", + "version": "1.13.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" + "reference": "024473a478be9df5fdaca2c793f2232fe788e414" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", - "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414", + "reference": "024473a478be9df5fdaca2c793f2232fe788e414", "shasum": "" }, "require": { @@ -4590,7 +4590,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0" }, "funding": [ { @@ -4598,7 +4598,7 @@ "type": "tidelift" } ], - "time": "2024-11-08T17:47:46+00:00" + "time": "2025-02-12T12:17:51+00:00" }, { "name": "nikic/php-parser", @@ -6217,16 +6217,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.11.1", + "version": "3.11.3", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87" + "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", - "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10", + "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10", "shasum": "" }, "require": { @@ -6291,9 +6291,13 @@ { "url": "https://opencollective.com/php_codesniffer", "type": "open_collective" + }, + { + "url": "https://thanks.dev/phpcsstandards", + "type": "thanks_dev" } ], - "time": "2024-11-16T12:02:36+00:00" + "time": "2025-01-23T17:04:15+00:00" }, { "name": "theseer/tokenizer", From 629fbab8da76424951bc9dd3c247643825624371 Mon Sep 17 00:00:00 2001 From: Riddhesh Sanghvi Date: Thu, 13 Feb 2025 17:25:43 +0530 Subject: [PATCH 5/5] Bump to version v4.8.1 Signed-off-by: Riddhesh Sanghvi --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 88f181192..697e99391 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.0 +4.8.1