From b7e9b4014851752d8bdba18c41c179d958ec884e Mon Sep 17 00:00:00 2001 From: Mykhailo Los Date: Wed, 8 Oct 2025 17:16:41 +0300 Subject: [PATCH 1/5] Test tribe embeds plugin --- composer.json | 16 ++++++++++++++++ composer.lock | 29 +++++++++++++++++++++-------- 2 files changed, 37 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index cf0e3452d..95ba800ca 100644 --- a/composer.json +++ b/composer.json @@ -75,6 +75,21 @@ "ffraenz/private-composer-installer": "^5.0" } } + }, + "5": { + "type": "package", + "package": { + "name": "moderntribe/tribe_embed", + "version": "1.1.1-alpha", + "type": "wordpress-plugin", + "dist": { + "type": "zip", + "url": "https://github.com/moderntribe/tribe-embeds/releases/download/v1.1.1-alpha/tribe-embed.1.1.0.zip" + }, + "require": { + "ffraenz/private-composer-installer": "^5.0" + } + } } }, "require-dev": { @@ -104,6 +119,7 @@ "gravity/gravityforms": "^2.9", "johnbillion/extended-cpts": "^5.0", "moderntribe/tribe-glomar": "dev-main", + "moderntribe/tribe_embed": "^1.1@alpha", "php-di/php-di": "^6.0", "vinkla/extended-acf": "^13.6", "vlucas/phpdotenv": "^5.5", diff --git a/composer.lock b/composer.lock index 85635fbfa..86069ff0b 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": "29bc9ff66085b5c22d0fe1413a0efeab", + "content-hash": "70d603a2f6aa878c7e248922e13f37af", "packages": [ { "name": "block-editor-custom-alignments/block-editor-custom-alignments", @@ -1817,6 +1817,18 @@ }, "time": "2022-09-19T02:39:23+00:00" }, + { + "name": "moderntribe/tribe_embed", + "version": "1.1.1-alpha", + "dist": { + "type": "zip", + "url": "https://github.com/moderntribe/tribe-embeds/releases/download/v1.1.1-alpha/tribe-embed.1.1.0.zip" + }, + "require": { + "ffraenz/private-composer-installer": "^5.0" + }, + "type": "wordpress-plugin" + }, { "name": "nb/oxymel", "version": "v0.1.0", @@ -10969,16 +10981,16 @@ }, { "name": "slevomat/coding-standard", - "version": "8.18.1", + "version": "8.19.0", "source": { "type": "git", "url": "https://github.com/slevomat/coding-standard.git", - "reference": "06b18b3f64979ab31d27c37021838439f3ed5919" + "reference": "9cc50509c3912d465a9f6898069f64cf2abf4e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/06b18b3f64979ab31d27c37021838439f3ed5919", - "reference": "06b18b3f64979ab31d27c37021838439f3ed5919", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/9cc50509c3912d465a9f6898069f64cf2abf4e8a", + "reference": "9cc50509c3912d465a9f6898069f64cf2abf4e8a", "shasum": "" }, "require": { @@ -11018,7 +11030,7 @@ ], "support": { "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/8.18.1" + "source": "https://github.com/slevomat/coding-standard/tree/8.19.0" }, "funding": [ { @@ -11030,7 +11042,7 @@ "type": "tidelift" } ], - "time": "2025-05-22T14:32:30+00:00" + "time": "2025-06-07T15:02:20+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -12254,7 +12266,8 @@ "aliases": [], "minimum-stability": "dev", "stability-flags": { - "moderntribe/tribe-glomar": 20 + "moderntribe/tribe-glomar": 20, + "moderntribe/tribe_embed": 15 }, "prefer-stable": true, "prefer-lowest": false, From 90daad6ea035540b9b98887a7082cc0d95012a37 Mon Sep 17 00:00:00 2001 From: Mykhailo Los Date: Wed, 8 Oct 2025 17:39:48 +0300 Subject: [PATCH 2/5] Trigger workflow From 266009141e6a05de5cca9f76c43a51af9411b023 Mon Sep 17 00:00:00 2001 From: Mykhailo Los Date: Wed, 8 Oct 2025 17:57:25 +0300 Subject: [PATCH 3/5] Add wistia support --- wp-content/plugins/core/src/Theme_Config/Theme_Support.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wp-content/plugins/core/src/Theme_Config/Theme_Support.php b/wp-content/plugins/core/src/Theme_Config/Theme_Support.php index b56ce5c97..534b7b005 100644 --- a/wp-content/plugins/core/src/Theme_Config/Theme_Support.php +++ b/wp-content/plugins/core/src/Theme_Config/Theme_Support.php @@ -9,6 +9,7 @@ class Theme_Support { */ public function add_theme_supports(): void { $this->remove_support_block_widgets(); + $this->support_wistia(); } /** @@ -45,4 +46,8 @@ private function remove_support_block_widgets(): void { remove_theme_support( 'widgets-block-editor' ); } + private function support_wistia(): void { + wp_oembed_add_provider( 'https://*.wistia.com/*', 'https://fast.wistia.com/oembed', false ); + } + } From 42e1ef7d1e2895a06ae5a3ee8b51e6273e3acc54 Mon Sep 17 00:00:00 2001 From: Mykhailo Los Date: Tue, 10 Mar 2026 17:00:50 +0200 Subject: [PATCH 4/5] Fix conflicts and install new version --- composer.json | 6 +- composer.lock | 473 +++++++++++++++++++++++++++----------------------- 2 files changed, 254 insertions(+), 225 deletions(-) diff --git a/composer.json b/composer.json index 88dcdc1c6..b62d740da 100644 --- a/composer.json +++ b/composer.json @@ -80,11 +80,11 @@ "type": "package", "package": { "name": "moderntribe/tribe_embed", - "version": "1.1.1-alpha", + "version": "1.2-alpha", "type": "wordpress-plugin", "dist": { "type": "zip", - "url": "https://github.com/moderntribe/tribe-embeds/releases/download/v1.1.1-alpha/tribe-embed.1.1.0.zip" + "url": "https://github.com/moderntribe/tribe-embeds/releases/download/v1.2-alpha/tribe-embed.1.1.1.zip" }, "require": { "ffraenz/private-composer-installer": "^5.0" @@ -119,7 +119,7 @@ "gravity/gravityforms": "^2.9", "johnbillion/extended-cpts": "^5.0", "moderntribe/tribe-glomar": "dev-main", - "moderntribe/tribe_embed": "^1.1@alpha", + "moderntribe/tribe_embed": "^1.2@alpha", "php-di/php-di": "^7.1", "vinkla/extended-acf": "^14.6", "vlucas/phpdotenv": "^5.5", diff --git a/composer.lock b/composer.lock index e8f3c5457..fabce001e 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": "18625c8f0d45913e8c6886bfc868f4b1", + "content-hash": "cbaa5f4178dc45720594c4768e5176e3", "packages": [ { "name": "block-editor-custom-alignments/block-editor-custom-alignments", @@ -997,16 +997,16 @@ }, { "name": "gettext/languages", - "version": "2.12.1", + "version": "2.12.2", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1" + "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Languages/zipball/0b0b0851c55168e1dfb14305735c64019732b5f1", - "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/079d6f4842cbcbf5673a70d8e93169a684e7aadd", + "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd", "shasum": "" }, "require": { @@ -1056,7 +1056,7 @@ ], "support": { "issues": "https://github.com/php-gettext/Languages/issues", - "source": "https://github.com/php-gettext/Languages/tree/2.12.1" + "source": "https://github.com/php-gettext/Languages/tree/2.12.2" }, "funding": [ { @@ -1068,7 +1068,7 @@ "type": "github" } ], - "time": "2025-03-19T11:14:02+00:00" + "time": "2026-02-23T14:05:50+00:00" }, { "name": "graham-campbell/result-type", @@ -1134,10 +1134,10 @@ }, { "name": "gravity/gravityforms", - "version": "2.9.26", + "version": "2.9.28", "dist": { "type": "zip", - "url": "https://composer.gravity.io/downloads/?plugin=gravityforms&version=2.9.26" + "url": "https://composer.gravity.io/downloads/?plugin=gravityforms&version=2.9.28" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -1539,16 +1539,16 @@ }, { "name": "justinrainbow/json-schema", - "version": "6.6.4", + "version": "v6.7.2", "source": { "type": "git", "url": "https://github.com/jsonrainbow/json-schema.git", - "reference": "2eeb75d21cf73211335888e7f5e6fd7440723ec7" + "reference": "6fea66c7204683af437864e7c4e7abf383d14bc0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/2eeb75d21cf73211335888e7f5e6fd7440723ec7", - "reference": "2eeb75d21cf73211335888e7f5e6fd7440723ec7", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/6fea66c7204683af437864e7c4e7abf383d14bc0", + "reference": "6fea66c7204683af437864e7c4e7abf383d14bc0", "shasum": "" }, "require": { @@ -1608,33 +1608,33 @@ ], "support": { "issues": "https://github.com/jsonrainbow/json-schema/issues", - "source": "https://github.com/jsonrainbow/json-schema/tree/6.6.4" + "source": "https://github.com/jsonrainbow/json-schema/tree/v6.7.2" }, - "time": "2025-12-19T15:01:32+00:00" + "time": "2026-02-15T15:06:22+00:00" }, { "name": "laravel/serializable-closure", - "version": "v2.0.8", + "version": "v2.0.10", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b" + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/7581a4407012f5f53365e11bafc520fd7f36bc9b", - "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/870fc81d2f879903dfc5b60bf8a0f94a1609e669", + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", "nesbot/carbon": "^2.67|^3.0", "pestphp/pest": "^2.36|^3.0|^4.0", "phpstan/phpstan": "^2.0", - "symfony/var-dumper": "^6.2.0|^7.0.0" + "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0" }, "type": "library", "extra": { @@ -1671,7 +1671,7 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2026-01-08T16:22:46+00:00" + "time": "2026-02-20T19:59:49+00:00" }, { "name": "marc-mabe/php-enum", @@ -1824,6 +1824,18 @@ }, "time": "2022-09-19T02:39:23+00:00" }, + { + "name": "moderntribe/tribe_embed", + "version": "1.2-alpha", + "dist": { + "type": "zip", + "url": "https://github.com/moderntribe/tribe-embeds/releases/download/v1.2-alpha/tribe-embed.1.1.1.zip" + }, + "require": { + "ffraenz/private-composer-installer": "^5.0" + }, + "type": "wordpress-plugin" + }, { "name": "mustache/mustache", "version": "v3.0.0", @@ -2476,16 +2488,16 @@ }, { "name": "symfony/console", - "version": "v8.0.4", + "version": "v8.0.7", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "ace03c4cf9805080ff40cbeec69fca180c339a3b" + "reference": "15ed9008a4ebe2d6a78e4937f74e0c13ef2e618a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/ace03c4cf9805080ff40cbeec69fca180c339a3b", - "reference": "ace03c4cf9805080ff40cbeec69fca180c339a3b", + "url": "https://api.github.com/repos/symfony/console/zipball/15ed9008a4ebe2d6a78e4937f74e0c13ef2e618a", + "reference": "15ed9008a4ebe2d6a78e4937f74e0c13ef2e618a", "shasum": "" }, "require": { @@ -2542,7 +2554,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v8.0.4" + "source": "https://github.com/symfony/console/tree/v8.0.7" }, "funding": [ { @@ -2562,7 +2574,7 @@ "type": "tidelift" } ], - "time": "2026-01-13T13:06:50+00:00" + "time": "2026-03-06T14:06:22+00:00" }, { "name": "symfony/deprecation-contracts", @@ -2633,16 +2645,16 @@ }, { "name": "symfony/filesystem", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "d551b38811096d0be9c4691d406991b47c0c630a" + "reference": "3ebc794fa5315e59fd122561623c2e2e4280538e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a", - "reference": "d551b38811096d0be9c4691d406991b47c0c630a", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/3ebc794fa5315e59fd122561623c2e2e4280538e", + "reference": "3ebc794fa5315e59fd122561623c2e2e4280538e", "shasum": "" }, "require": { @@ -2679,7 +2691,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v7.4.0" + "source": "https://github.com/symfony/filesystem/tree/v7.4.6" }, "funding": [ { @@ -2699,20 +2711,20 @@ "type": "tidelift" } ], - "time": "2025-11-27T13:27:24+00:00" + "time": "2026-02-25T16:50:00+00:00" }, { "name": "symfony/finder", - "version": "v8.0.5", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "8bd576e97c67d45941365bf824e18dc8538e6eb0" + "reference": "441404f09a54de6d1bd6ad219e088cdf4c91f97c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/8bd576e97c67d45941365bf824e18dc8538e6eb0", - "reference": "8bd576e97c67d45941365bf824e18dc8538e6eb0", + "url": "https://api.github.com/repos/symfony/finder/zipball/441404f09a54de6d1bd6ad219e088cdf4c91f97c", + "reference": "441404f09a54de6d1bd6ad219e088cdf4c91f97c", "shasum": "" }, "require": { @@ -2747,7 +2759,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v8.0.5" + "source": "https://github.com/symfony/finder/tree/v8.0.6" }, "funding": [ { @@ -2767,7 +2779,7 @@ "type": "tidelift" } ], - "time": "2026-01-26T15:08:38+00:00" + "time": "2026-01-29T09:41:02+00:00" }, { "name": "symfony/polyfill-ctype", @@ -3517,16 +3529,16 @@ }, { "name": "symfony/string", - "version": "v8.0.4", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "758b372d6882506821ed666032e43020c4f57194" + "reference": "6c9e1108041b5dce21a9a4984b531c4923aa9ec4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/758b372d6882506821ed666032e43020c4f57194", - "reference": "758b372d6882506821ed666032e43020c4f57194", + "url": "https://api.github.com/repos/symfony/string/zipball/6c9e1108041b5dce21a9a4984b531c4923aa9ec4", + "reference": "6c9e1108041b5dce21a9a4984b531c4923aa9ec4", "shasum": "" }, "require": { @@ -3583,7 +3595,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v8.0.4" + "source": "https://github.com/symfony/string/tree/v8.0.6" }, "funding": [ { @@ -3603,7 +3615,7 @@ "type": "tidelift" } ], - "time": "2026-01-12T12:37:40+00:00" + "time": "2026-02-09T10:14:57+00:00" }, { "name": "vinkla/extended-acf", @@ -3966,21 +3978,21 @@ }, { "name": "wp-cli/core-command", - "version": "v2.1.23", + "version": "v2.1.24", "source": { "type": "git", "url": "https://github.com/wp-cli/core-command.git", - "reference": "89449979e86bd320d7a18587bb91ad3b531ba4c9" + "reference": "eef5fff75f885d3af854ff92ccca154838aae87a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/core-command/zipball/89449979e86bd320d7a18587bb91ad3b531ba4c9", - "reference": "89449979e86bd320d7a18587bb91ad3b531ba4c9", + "url": "https://api.github.com/repos/wp-cli/core-command/zipball/eef5fff75f885d3af854ff92ccca154838aae87a", + "reference": "eef5fff75f885d3af854ff92ccca154838aae87a", "shasum": "" }, "require": { "composer/semver": "^1.4 || ^2 || ^3", - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/checksum-command": "^1 || ^2", @@ -3995,6 +4007,7 @@ "commands": [ "core", "core check-update", + "core check-update-db", "core download", "core install", "core is-installed", @@ -4031,22 +4044,22 @@ "homepage": "https://github.com/wp-cli/core-command", "support": { "issues": "https://github.com/wp-cli/core-command/issues", - "source": "https://github.com/wp-cli/core-command/tree/v2.1.23" + "source": "https://github.com/wp-cli/core-command/tree/v2.1.24" }, - "time": "2026-01-10T09:57:36+00:00" + "time": "2026-03-04T11:40:44+00:00" }, { "name": "wp-cli/cron-command", - "version": "v2.3.3", + "version": "v2.3.4", "source": { "type": "git", "url": "https://github.com/wp-cli/cron-command.git", - "reference": "c877d87345c2e0f3f7929844d64603bdc116d760" + "reference": "954e5152b5cfedf1222bf45abd8c241b145d429c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/cron-command/zipball/c877d87345c2e0f3f7929844d64603bdc116d760", - "reference": "c877d87345c2e0f3f7929844d64603bdc116d760", + "url": "https://api.github.com/repos/wp-cli/cron-command/zipball/954e5152b5cfedf1222bf45abd8c241b145d429c", + "reference": "954e5152b5cfedf1222bf45abd8c241b145d429c", "shasum": "" }, "require": { @@ -4100,9 +4113,9 @@ "homepage": "https://github.com/wp-cli/cron-command", "support": { "issues": "https://github.com/wp-cli/cron-command/issues", - "source": "https://github.com/wp-cli/cron-command/tree/v2.3.3" + "source": "https://github.com/wp-cli/cron-command/tree/v2.3.4" }, - "time": "2025-11-11T13:30:43+00:00" + "time": "2026-02-13T14:21:27+00:00" }, { "name": "wp-cli/db-command", @@ -4180,20 +4193,20 @@ }, { "name": "wp-cli/embed-command", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/wp-cli/embed-command.git", - "reference": "c95faa486bda28883fd9f0b4702ded2b064061b6" + "reference": "cc10e67d84e0158a96fbc5f48b7652f085cca389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/embed-command/zipball/c95faa486bda28883fd9f0b4702ded2b064061b6", - "reference": "c95faa486bda28883fd9f0b4702ded2b064061b6", + "url": "https://api.github.com/repos/wp-cli/embed-command/zipball/cc10e67d84e0158a96fbc5f48b7652f085cca389", + "reference": "cc10e67d84e0158a96fbc5f48b7652f085cca389", "shasum": "" }, "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/entity-command": "^1.3 || ^2", @@ -4241,9 +4254,9 @@ "homepage": "https://github.com/wp-cli/embed-command", "support": { "issues": "https://github.com/wp-cli/embed-command/issues", - "source": "https://github.com/wp-cli/embed-command/tree/v2.1.0" + "source": "https://github.com/wp-cli/embed-command/tree/v2.1.1" }, - "time": "2025-11-11T13:30:46+00:00" + "time": "2026-02-12T12:26:05+00:00" }, { "name": "wp-cli/entity-command", @@ -4542,16 +4555,16 @@ }, { "name": "wp-cli/export-command", - "version": "v2.1.14", + "version": "v2.1.15", "source": { "type": "git", "url": "https://github.com/wp-cli/export-command.git", - "reference": "2af32bf12c1bccd6561a215dbbafc2f272647ee8" + "reference": "84a335ca6e4296aff130659642818473a9b0d90d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/export-command/zipball/2af32bf12c1bccd6561a215dbbafc2f272647ee8", - "reference": "2af32bf12c1bccd6561a215dbbafc2f272647ee8", + "url": "https://api.github.com/repos/wp-cli/export-command/zipball/84a335ca6e4296aff130659642818473a9b0d90d", + "reference": "84a335ca6e4296aff130659642818473a9b0d90d", "shasum": "" }, "require": { @@ -4564,7 +4577,7 @@ "wp-cli/extension-command": "^1.2 || ^2", "wp-cli/import-command": "^1 || ^2", "wp-cli/media-command": "^1 || ^2", - "wp-cli/wp-cli-tests": "^4" + "wp-cli/wp-cli-tests": "^5" }, "type": "wp-cli-package", "extra": { @@ -4599,22 +4612,22 @@ "homepage": "https://github.com/wp-cli/export-command", "support": { "issues": "https://github.com/wp-cli/export-command/issues", - "source": "https://github.com/wp-cli/export-command/tree/v2.1.14" + "source": "https://github.com/wp-cli/export-command/tree/v2.1.15" }, - "time": "2025-04-02T15:29:08+00:00" + "time": "2026-02-12T12:26:09+00:00" }, { "name": "wp-cli/extension-command", - "version": "v2.2.0", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/wp-cli/extension-command.git", - "reference": "cf68e1f3244a0a9557dd8cf4cc9fb03779b14678" + "reference": "a8725c304e4836df00827d97ffc17de12f0ad1f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/cf68e1f3244a0a9557dd8cf4cc9fb03779b14678", - "reference": "cf68e1f3244a0a9557dd8cf4cc9fb03779b14678", + "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/a8725c304e4836df00827d97ffc17de12f0ad1f5", + "reference": "a8725c304e4836df00827d97ffc17de12f0ad1f5", "shasum": "" }, "require": { @@ -4638,14 +4651,21 @@ "plugin delete", "plugin get", "plugin install", + "plugin install-dependencies", + "plugin is-active", "plugin is-installed", "plugin list", "plugin path", "plugin search", "plugin status", + "plugin check-update", "plugin toggle", "plugin uninstall", "plugin update", + "plugin auto-updates", + "plugin auto-updates disable", + "plugin auto-updates enable", + "plugin auto-updates status", "theme", "theme activate", "theme delete", @@ -4653,6 +4673,7 @@ "theme enable", "theme get", "theme install", + "theme is-active", "theme is-installed", "theme list", "theme mod", @@ -4662,8 +4683,13 @@ "theme path", "theme search", "theme status", + "theme check-update", "theme update", - "theme mod list" + "theme mod list", + "theme auto-updates", + "theme auto-updates disable", + "theme auto-updates enable", + "theme auto-updates status" ], "branch-alias": { "dev-main": "2.x-dev" @@ -4697,9 +4723,9 @@ "homepage": "https://github.com/wp-cli/extension-command", "support": { "issues": "https://github.com/wp-cli/extension-command/issues", - "source": "https://github.com/wp-cli/extension-command/tree/v2.2.0" + "source": "https://github.com/wp-cli/extension-command/tree/v2.3.0" }, - "time": "2025-09-04T12:33:20+00:00" + "time": "2026-03-09T20:12:09+00:00" }, { "name": "wp-cli/i18n-command", @@ -4974,16 +5000,16 @@ }, { "name": "wp-cli/media-command", - "version": "v2.2.4", + "version": "v2.2.5", "source": { "type": "git", "url": "https://github.com/wp-cli/media-command.git", - "reference": "1e896733998450f3cb8c1baba4de64804c3d549e" + "reference": "5696bba2e8c7d5c373fa20024edb1a4b682d1511" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/media-command/zipball/1e896733998450f3cb8c1baba4de64804c3d549e", - "reference": "1e896733998450f3cb8c1baba4de64804c3d549e", + "url": "https://api.github.com/repos/wp-cli/media-command/zipball/5696bba2e8c7d5c373fa20024edb1a4b682d1511", + "reference": "5696bba2e8c7d5c373fa20024edb1a4b682d1511", "shasum": "" }, "require": { @@ -4999,6 +5025,7 @@ "bundled": true, "commands": [ "media", + "media fix-orientation", "media import", "media regenerate", "media image-size" @@ -5030,9 +5057,9 @@ "homepage": "https://github.com/wp-cli/media-command", "support": { "issues": "https://github.com/wp-cli/media-command/issues", - "source": "https://github.com/wp-cli/media-command/tree/v2.2.4" + "source": "https://github.com/wp-cli/media-command/tree/v2.2.5" }, - "time": "2026-01-27T02:54:42+00:00" + "time": "2026-03-04T13:53:32+00:00" }, { "name": "wp-cli/mustangostang-spyc", @@ -5265,20 +5292,20 @@ }, { "name": "wp-cli/rewrite-command", - "version": "v2.0.16", + "version": "v2.0.17", "source": { "type": "git", "url": "https://github.com/wp-cli/rewrite-command.git", - "reference": "84004ff4d14038d06c6fe489807eb09739e62b94" + "reference": "74c8f12fccce7f2bac04fa363ebcf452494c7afc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/rewrite-command/zipball/84004ff4d14038d06c6fe489807eb09739e62b94", - "reference": "84004ff4d14038d06c6fe489807eb09739e62b94", + "url": "https://api.github.com/repos/wp-cli/rewrite-command/zipball/74c8f12fccce7f2bac04fa363ebcf452494c7afc", + "reference": "74c8f12fccce7f2bac04fa363ebcf452494c7afc", "shasum": "" }, "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/entity-command": "^1.3 || ^2", @@ -5320,9 +5347,9 @@ "homepage": "https://github.com/wp-cli/rewrite-command", "support": { "issues": "https://github.com/wp-cli/rewrite-command/issues", - "source": "https://github.com/wp-cli/rewrite-command/tree/v2.0.16" + "source": "https://github.com/wp-cli/rewrite-command/tree/v2.0.17" }, - "time": "2025-11-11T13:30:58+00:00" + "time": "2026-02-15T11:56:30+00:00" }, { "name": "wp-cli/role-command", @@ -5392,20 +5419,20 @@ }, { "name": "wp-cli/scaffold-command", - "version": "v2.5.2", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/wp-cli/scaffold-command.git", - "reference": "91c93ff2a9f405e2b098e4879e5045372b17f38f" + "reference": "5a690ec1b56ef365ec6c7ec5fef4c6371a0564f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/91c93ff2a9f405e2b098e4879e5045372b17f38f", - "reference": "91c93ff2a9f405e2b098e4879e5045372b17f38f", + "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/5a690ec1b56ef365ec6c7ec5fef4c6371a0564f6", + "reference": "5a690ec1b56ef365ec6c7ec5fef4c6371a0564f6", "shasum": "" }, "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/extension-command": "^1.2 || ^2", @@ -5452,9 +5479,9 @@ "homepage": "https://github.com/wp-cli/scaffold-command", "support": { "issues": "https://github.com/wp-cli/scaffold-command/issues", - "source": "https://github.com/wp-cli/scaffold-command/tree/v2.5.2" + "source": "https://github.com/wp-cli/scaffold-command/tree/v2.5.3" }, - "time": "2026-01-09T14:41:03+00:00" + "time": "2026-02-13T09:27:25+00:00" }, { "name": "wp-cli/search-replace-command", @@ -5694,16 +5721,16 @@ }, { "name": "wp-cli/widget-command", - "version": "v2.1.12", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/wp-cli/widget-command.git", - "reference": "73084053f7b32d92583e44d870b81f287beea6a9" + "reference": "6f04d7e0129e0fb280cfc4931bbd40478e743871" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/widget-command/zipball/73084053f7b32d92583e44d870b81f287beea6a9", - "reference": "73084053f7b32d92583e44d870b81f287beea6a9", + "url": "https://api.github.com/repos/wp-cli/widget-command/zipball/6f04d7e0129e0fb280cfc4931bbd40478e743871", + "reference": "6f04d7e0129e0fb280cfc4931bbd40478e743871", "shasum": "" }, "require": { @@ -5711,7 +5738,7 @@ }, "require-dev": { "wp-cli/extension-command": "^1.2 || ^2", - "wp-cli/wp-cli-tests": "^4" + "wp-cli/wp-cli-tests": "^5" }, "type": "wp-cli-package", "extra": { @@ -5755,9 +5782,9 @@ "homepage": "https://github.com/wp-cli/widget-command", "support": { "issues": "https://github.com/wp-cli/widget-command/issues", - "source": "https://github.com/wp-cli/widget-command/tree/v2.1.12" + "source": "https://github.com/wp-cli/widget-command/tree/v2.2.0" }, - "time": "2025-04-11T09:29:37+00:00" + "time": "2026-02-12T12:26:33+00:00" }, { "name": "wp-cli/wp-cli", @@ -5765,12 +5792,12 @@ "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli.git", - "reference": "ab7ed74a3c79f224304646d3c05a1c1d1ab0522e" + "reference": "4bd00fd015ba70240d554c36e0a9cf0b4d9ce479" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/ab7ed74a3c79f224304646d3c05a1c1d1ab0522e", - "reference": "ab7ed74a3c79f224304646d3c05a1c1d1ab0522e", + "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/4bd00fd015ba70240d554c36e0a9cf0b4d9ce479", + "reference": "4bd00fd015ba70240d554c36e0a9cf0b4d9ce479", "shasum": "" }, "require": { @@ -5841,7 +5868,7 @@ "issues": "https://github.com/wp-cli/wp-cli/issues", "source": "https://github.com/wp-cli/wp-cli" }, - "time": "2026-02-02T02:22:19+00:00" + "time": "2026-03-10T14:38:34+00:00" }, { "name": "wp-cli/wp-cli-bundle", @@ -5986,15 +6013,15 @@ }, { "name": "wpackagist-plugin/duplicate-post", - "version": "4.5", + "version": "4.6", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/duplicate-post/", - "reference": "tags/4.5" + "reference": "tags/4.6" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip" + "url": "https://downloads.wordpress.org/plugin/duplicate-post.4.6.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -6040,15 +6067,15 @@ }, { "name": "wpackagist-plugin/seo-by-rank-math", - "version": "1.0.263", + "version": "1.0.265", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/seo-by-rank-math/", - "reference": "tags/1.0.263" + "reference": "tags/1.0.265" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.263.zip" + "url": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.265.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -6076,10 +6103,10 @@ }, { "name": "wpengine/advanced-custom-fields-pro", - "version": "6.7.0.2", + "version": "6.7.1", "dist": { "type": "zip", - "url": "https://connect.advancedcustomfields.com/v2/plugins/composer_download?s=composer&p=pro&t=6.7.0.2" + "url": "https://connect.advancedcustomfields.com/v2/plugins/composer_download?s=composer&p=pro&t=6.7.1" }, "require": { "composer/installers": "~1.0 || ~2.0" @@ -6231,16 +6258,16 @@ }, { "name": "codeception/codeception", - "version": "5.3.4", + "version": "5.3.5", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "cb4c200ec0a7fe21964f51872bb403701f53f35b" + "reference": "83c2986ec2abe594cee2f706d9ec7aca2878fbe0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/cb4c200ec0a7fe21964f51872bb403701f53f35b", - "reference": "cb4c200ec0a7fe21964f51872bb403701f53f35b", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/83c2986ec2abe594cee2f706d9ec7aca2878fbe0", + "reference": "83c2986ec2abe594cee2f706d9ec7aca2878fbe0", "shasum": "" }, "require": { @@ -6251,13 +6278,13 @@ "ext-json": "*", "ext-mbstring": "*", "php": "^8.2", - "phpunit/php-code-coverage": "^9.2 | ^10.0 | ^11.0 | ^12.0", - "phpunit/php-text-template": "^2.0 | ^3.0 | ^4.0 | ^5.0", - "phpunit/php-timer": "^5.0.3 | ^6.0 | ^7.0 | ^8.0", - "phpunit/phpunit": "^9.5.20 | ^10.0 | ^11.0 | ^12.0", + "phpunit/php-code-coverage": "^9.2 | ^10.0 | ^11.0 | ^12.0 | ^13.0", + "phpunit/php-text-template": "^2.0 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "phpunit/php-timer": "^5.0.3 | ^6.0 | ^7.0 | ^8.0 | ^9.0", + "phpunit/phpunit": "^9.5.20 | ^10.0 | ^11.0 | ^12.0 | ^13.0", "psy/psysh": "^0.11.2 | ^0.12", - "sebastian/comparator": "^4.0.5 | ^5.0 | ^6.0 | ^7.0", - "sebastian/diff": "^4.0.3 | ^5.0 | ^6.0 | ^7.0", + "sebastian/comparator": "^4.0.5 | ^5.0 | ^6.0 | ^7.0 | ^8.0", + "sebastian/diff": "^4.0.3 | ^5.0 | ^6.0 | ^7.0 | ^8.0", "symfony/console": ">=5.4.24 <9.0", "symfony/css-selector": ">=5.4.24 <9.0", "symfony/event-dispatcher": ">=5.4.24 <9.0", @@ -6276,7 +6303,7 @@ "require-dev": { "codeception/lib-innerbrowser": "*@dev", "codeception/lib-web": "*@dev", - "codeception/module-asserts": "*@dev", + "codeception/module-asserts": "dev-master", "codeception/module-cli": "*@dev", "codeception/module-db": "*@dev", "codeception/module-filesystem": "*@dev", @@ -6346,7 +6373,7 @@ ], "support": { "issues": "https://github.com/Codeception/Codeception/issues", - "source": "https://github.com/Codeception/Codeception/tree/5.3.4" + "source": "https://github.com/Codeception/Codeception/tree/5.3.5" }, "funding": [ { @@ -6354,26 +6381,26 @@ "type": "open_collective" } ], - "time": "2026-01-14T11:55:19+00:00" + "time": "2026-02-18T06:18:00+00:00" }, { "name": "codeception/lib-asserts", - "version": "3.1.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/Codeception/lib-asserts.git", - "reference": "8e161f38a71cdf3dc638c5427df21c0f01f12d13" + "reference": "f161e5d3a9e5ae573ca01cfb3b5601ff5303df03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/8e161f38a71cdf3dc638c5427df21c0f01f12d13", - "reference": "8e161f38a71cdf3dc638c5427df21c0f01f12d13", + "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/f161e5d3a9e5ae573ca01cfb3b5601ff5303df03", + "reference": "f161e5d3a9e5ae573ca01cfb3b5601ff5303df03", "shasum": "" }, "require": { "ext-dom": "*", "php": "^8.2 || ^8.3 || ^8.4 || ^8.5", - "phpunit/phpunit": "^11.5 || ^12.0" + "phpunit/phpunit": "^11.5 || ^12.0 || ^13.0" }, "type": "library", "autoload": { @@ -6406,22 +6433,22 @@ ], "support": { "issues": "https://github.com/Codeception/lib-asserts/issues", - "source": "https://github.com/Codeception/lib-asserts/tree/3.1.0" + "source": "https://github.com/Codeception/lib-asserts/tree/3.2.0" }, - "time": "2025-12-22T08:25:07+00:00" + "time": "2026-02-06T15:19:32+00:00" }, { "name": "codeception/lib-innerbrowser", - "version": "4.0.8", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/Codeception/lib-innerbrowser.git", - "reference": "ea25ea6745941781861eb4509d134c97685fc833" + "reference": "8af7f8402f976b32f67a83dfd4e31f8f5b1f7db3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/ea25ea6745941781861eb4509d134c97685fc833", - "reference": "ea25ea6745941781861eb4509d134c97685fc833", + "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/8af7f8402f976b32f67a83dfd4e31f8f5b1f7db3", + "reference": "8af7f8402f976b32f67a83dfd4e31f8f5b1f7db3", "shasum": "" }, "require": { @@ -6431,7 +6458,7 @@ "ext-json": "*", "ext-mbstring": "*", "php": "^8.1", - "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0 || ^13.0", "symfony/browser-kit": "^4.4.24 || ^5.4 || ^6.0 || ^7.0 || ^8.0", "symfony/dom-crawler": "^4.4.30 || ^5.4 || ^6.0 || ^7.0 || ^8.0" }, @@ -6465,29 +6492,29 @@ ], "support": { "issues": "https://github.com/Codeception/lib-innerbrowser/issues", - "source": "https://github.com/Codeception/lib-innerbrowser/tree/4.0.8" + "source": "https://github.com/Codeception/lib-innerbrowser/tree/4.1.0" }, - "time": "2025-12-15T13:07:50+00:00" + "time": "2026-02-07T10:09:13+00:00" }, { "name": "codeception/lib-web", - "version": "2.0.1", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Codeception/lib-web.git", - "reference": "bbec12e789c3b810ec8cb86e5f46b5bfd673c441" + "reference": "a030a3a22fc8e856b5957086794ed5403c7992d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/lib-web/zipball/bbec12e789c3b810ec8cb86e5f46b5bfd673c441", - "reference": "bbec12e789c3b810ec8cb86e5f46b5bfd673c441", + "url": "https://api.github.com/repos/Codeception/lib-web/zipball/a030a3a22fc8e856b5957086794ed5403c7992d9", + "reference": "a030a3a22fc8e856b5957086794ed5403c7992d9", "shasum": "" }, "require": { "ext-mbstring": "*", "guzzlehttp/psr7": "^2.0", "php": "^8.2", - "phpunit/phpunit": "^11.5 | ^12", + "phpunit/phpunit": "^11.5 | ^12 | ^13", "symfony/css-selector": ">=4.4.24 <9.0" }, "conflict": { @@ -6518,9 +6545,9 @@ ], "support": { "issues": "https://github.com/Codeception/lib-web/issues", - "source": "https://github.com/Codeception/lib-web/tree/2.0.1" + "source": "https://github.com/Codeception/lib-web/tree/2.1.0" }, - "time": "2025-11-27T21:09:09+00:00" + "time": "2026-02-06T15:22:13+00:00" }, { "name": "codeception/module-asserts", @@ -6807,16 +6834,16 @@ }, { "name": "codeception/module-webdriver", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/Codeception/module-webdriver.git", - "reference": "4a87a8a5eb0f07d421fc8b6bb0decd7b20948c04" + "reference": "af40affda67d631ba58fd68361db9eacaa2828f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/4a87a8a5eb0f07d421fc8b6bb0decd7b20948c04", - "reference": "4a87a8a5eb0f07d421fc8b6bb0decd7b20948c04", + "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/af40affda67d631ba58fd68361db9eacaa2828f5", + "reference": "af40affda67d631ba58fd68361db9eacaa2828f5", "shasum": "" }, "require": { @@ -6827,7 +6854,7 @@ "ext-mbstring": "*", "php": "^8.1", "php-webdriver/webdriver": "^1.14.0", - "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0" + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0 || ^13.0" }, "suggest": { "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests" @@ -6862,33 +6889,33 @@ ], "support": { "issues": "https://github.com/Codeception/module-webdriver/issues", - "source": "https://github.com/Codeception/module-webdriver/tree/4.0.4" + "source": "https://github.com/Codeception/module-webdriver/tree/4.0.5" }, - "time": "2025-11-28T06:40:36+00:00" + "time": "2026-02-18T06:28:45+00:00" }, { "name": "codeception/stub", - "version": "4.2.1", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/Codeception/Stub.git", - "reference": "0c573cd5c62a828dadadc41bc56f8434860bb7bb" + "reference": "6305b97eaf6ea9bdaed29a5bd4d6f2948f577d8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/0c573cd5c62a828dadadc41bc56f8434860bb7bb", - "reference": "0c573cd5c62a828dadadc41bc56f8434860bb7bb", + "url": "https://api.github.com/repos/Codeception/Stub/zipball/6305b97eaf6ea9bdaed29a5bd4d6f2948f577d8f", + "reference": "6305b97eaf6ea9bdaed29a5bd4d6f2948f577d8f", "shasum": "" }, "require": { "php": "^8.1", - "phpunit/phpunit": "^8.4 | ^9.0 | ^10.0 | ^11 | ^12" + "phpunit/phpunit": "^8.4 | ^9.0 | ^10.0 | ^11 | ^12 | ^13" }, "conflict": { "codeception/codeception": "<5.0.6" }, "require-dev": { - "consolidation/robo": "^3.0" + "consolidation/robo": "^4.0" }, "type": "library", "autoload": { @@ -6903,9 +6930,9 @@ "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", "support": { "issues": "https://github.com/Codeception/Stub/issues", - "source": "https://github.com/Codeception/Stub/tree/4.2.1" + "source": "https://github.com/Codeception/Stub/tree/4.3.0" }, - "time": "2025-12-05T13:37:14+00:00" + "time": "2026-02-06T15:19:04+00:00" }, { "name": "codeception/util-universalframework", @@ -7318,16 +7345,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "2.8.0", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "21dc724a0583619cd1652f673303492272778051" + "reference": "718f1ee6a878be5290af3557aeda0c91278361d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", - "reference": "21dc724a0583619cd1652f673303492272778051", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9", + "reference": "718f1ee6a878be5290af3557aeda0c91278361d9", "shasum": "" }, "require": { @@ -7414,7 +7441,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.8.0" + "source": "https://github.com/guzzle/psr7/tree/2.8.1" }, "funding": [ { @@ -7430,20 +7457,20 @@ "type": "tidelift" } ], - "time": "2025-08-23T21:21:41+00:00" + "time": "2026-03-10T09:55:26+00:00" }, { "name": "lucatume/wp-browser", - "version": "4.5.11", + "version": "4.5.15", "source": { "type": "git", "url": "https://github.com/lucatume/wp-browser.git", - "reference": "ed294eebf327e5b941e49f33d25dd7bc87e005b3" + "reference": "98dd155f7bfaabcf4d11bd3244d295462a400972" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/ed294eebf327e5b941e49f33d25dd7bc87e005b3", - "reference": "ed294eebf327e5b941e49f33d25dd7bc87e005b3", + "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/98dd155f7bfaabcf4d11bd3244d295462a400972", + "reference": "98dd155f7bfaabcf4d11bd3244d295462a400972", "shasum": "" }, "require": { @@ -7524,7 +7551,7 @@ ], "support": { "issues": "https://github.com/lucatume/wp-browser/issues", - "source": "https://github.com/lucatume/wp-browser/tree/4.5.11" + "source": "https://github.com/lucatume/wp-browser/tree/4.5.15" }, "funding": [ { @@ -7532,7 +7559,7 @@ "type": "github" } ], - "time": "2026-01-20T09:51:26+00:00" + "time": "2026-02-23T09:47:47+00:00" }, { "name": "moderntribe/coding-standards", @@ -8512,11 +8539,11 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.38", + "version": "2.1.40", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dfaf1f530e1663aa167bc3e52197adb221582629", - "reference": "dfaf1f530e1663aa167bc3e52197adb221582629", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b", + "reference": "9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b", "shasum": "" }, "require": { @@ -8561,7 +8588,7 @@ "type": "github" } ], - "time": "2026-01-30T17:12:46+00:00" + "time": "2026-02-23T15:04:35+00:00" }, { "name": "phpunit/php-code-coverage", @@ -8912,16 +8939,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.50", + "version": "11.5.55", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3" + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fdfc727f0fcacfeb8fcb30c7e5da173125b58be3", - "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00", + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00", "shasum": "" }, "require": { @@ -8936,7 +8963,7 @@ "phar-io/version": "^3.2.1", "php": ">=8.2", "phpunit/php-code-coverage": "^11.0.12", - "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-file-iterator": "^5.1.1", "phpunit/php-invoker": "^5.0.1", "phpunit/php-text-template": "^4.0.1", "phpunit/php-timer": "^7.0.1", @@ -8948,6 +8975,7 @@ "sebastian/exporter": "^6.3.2", "sebastian/global-state": "^7.0.2", "sebastian/object-enumerator": "^6.0.1", + "sebastian/recursion-context": "^6.0.3", "sebastian/type": "^5.1.3", "sebastian/version": "^5.0.2", "staabm/side-effects-detector": "^1.0.5" @@ -8993,7 +9021,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.50" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55" }, "funding": [ { @@ -9017,7 +9045,7 @@ "type": "tidelift" } ], - "time": "2026-01-27T05:59:18+00:00" + "time": "2026-02-18T12:37:06+00:00" }, { "name": "psr/event-dispatcher", @@ -9231,16 +9259,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.19", + "version": "v0.12.21", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "a4f766e5c5b6773d8399711019bb7d90875a50ee" + "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a4f766e5c5b6773d8399711019bb7d90875a50ee", - "reference": "a4f766e5c5b6773d8399711019bb7d90875a50ee", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97", + "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97", "shasum": "" }, "require": { @@ -9304,9 +9332,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.19" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.21" }, - "time": "2026-01-30T17:33:13+00:00" + "time": "2026-03-06T21:21:28+00:00" }, { "name": "ralouphie/getallheaders", @@ -10665,16 +10693,16 @@ }, { "name": "symfony/css-selector", - "version": "v8.0.0", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "6225bd458c53ecdee056214cb4a2ffaf58bd592b" + "reference": "2a178bf80f05dbbe469a337730eba79d61315262" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/6225bd458c53ecdee056214cb4a2ffaf58bd592b", - "reference": "6225bd458c53ecdee056214cb4a2ffaf58bd592b", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/2a178bf80f05dbbe469a337730eba79d61315262", + "reference": "2a178bf80f05dbbe469a337730eba79d61315262", "shasum": "" }, "require": { @@ -10710,7 +10738,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v8.0.0" + "source": "https://github.com/symfony/css-selector/tree/v8.0.6" }, "funding": [ { @@ -10730,20 +10758,20 @@ "type": "tidelift" } ], - "time": "2025-10-30T14:17:19+00:00" + "time": "2026-02-17T13:07:04+00:00" }, { "name": "symfony/dom-crawler", - "version": "v8.0.4", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "fd78228fa362b41729173183493f46b1df49485f" + "reference": "7f504fe7fb7fa5fee40a653104842cf6f851a6d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/fd78228fa362b41729173183493f46b1df49485f", - "reference": "fd78228fa362b41729173183493f46b1df49485f", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7f504fe7fb7fa5fee40a653104842cf6f851a6d8", + "reference": "7f504fe7fb7fa5fee40a653104842cf6f851a6d8", "shasum": "" }, "require": { @@ -10780,7 +10808,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v8.0.4" + "source": "https://github.com/symfony/dom-crawler/tree/v8.0.6" }, "funding": [ { @@ -10800,7 +10828,7 @@ "type": "tidelift" } ], - "time": "2026-01-05T09:27:50+00:00" + "time": "2026-02-17T13:07:04+00:00" }, { "name": "symfony/event-dispatcher", @@ -10965,16 +10993,16 @@ }, { "name": "symfony/var-dumper", - "version": "v8.0.4", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "326e0406fc315eca57ef5740fa4a280b7a068c82" + "reference": "2e14f7e0bf5ff02c6e63bd31cb8e4855a13d6209" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/326e0406fc315eca57ef5740fa4a280b7a068c82", - "reference": "326e0406fc315eca57ef5740fa4a280b7a068c82", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2e14f7e0bf5ff02c6e63bd31cb8e4855a13d6209", + "reference": "2e14f7e0bf5ff02c6e63bd31cb8e4855a13d6209", "shasum": "" }, "require": { @@ -11028,7 +11056,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v8.0.4" + "source": "https://github.com/symfony/var-dumper/tree/v8.0.6" }, "funding": [ { @@ -11048,20 +11076,20 @@ "type": "tidelift" } ], - "time": "2026-01-01T23:07:29+00:00" + "time": "2026-02-15T10:53:29+00:00" }, { "name": "symfony/yaml", - "version": "v8.0.1", + "version": "v8.0.6", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14" + "reference": "5f006c50a981e1630bbb70ad409c5d85f9a716e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14", - "reference": "7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14", + "url": "https://api.github.com/repos/symfony/yaml/zipball/5f006c50a981e1630bbb70ad409c5d85f9a716e0", + "reference": "5f006c50a981e1630bbb70ad409c5d85f9a716e0", "shasum": "" }, "require": { @@ -11103,7 +11131,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v8.0.1" + "source": "https://github.com/symfony/yaml/tree/v8.0.6" }, "funding": [ { @@ -11123,7 +11151,7 @@ "type": "tidelift" } ], - "time": "2025-12-04T18:17:06+00:00" + "time": "2026-02-09T10:14:57+00:00" }, { "name": "szepeviktor/phpstan-wordpress", @@ -11308,7 +11336,8 @@ "aliases": [], "minimum-stability": "dev", "stability-flags": { - "moderntribe/tribe-glomar": 20 + "moderntribe/tribe-glomar": 20, + "moderntribe/tribe_embed": 15 }, "prefer-stable": true, "prefer-lowest": false, From cb69d9caf301453f0df45a455c1b5ea419f7f02b Mon Sep 17 00:00:00 2001 From: Mykhailo Los Date: Tue, 21 Apr 2026 13:25:54 +0300 Subject: [PATCH 5/5] Bump versions --- composer.lock | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/composer.lock b/composer.lock index 27e95ec6d..fee8fbe2e 100644 --- a/composer.lock +++ b/composer.lock @@ -1130,10 +1130,10 @@ }, { "name": "gravity/gravityforms", - "version": "2.9.31", + "version": "2.10.0", "dist": { "type": "zip", - "url": "https://composer.gravity.io/downloads/?plugin=gravityforms&version=2.9.31" + "url": "https://composer.gravity.io/downloads/?plugin=gravityforms&version=2.10.0" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -2779,7 +2779,7 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -2838,7 +2838,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.36.0" }, "funding": [ { @@ -2862,7 +2862,7 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", @@ -2920,7 +2920,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.36.0" }, "funding": [ { @@ -2944,7 +2944,7 @@ }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -3005,7 +3005,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.36.0" }, "funding": [ { @@ -3029,7 +3029,7 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", @@ -3090,7 +3090,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.36.0" }, "funding": [ { @@ -3114,7 +3114,7 @@ }, { "name": "symfony/polyfill-php73", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", @@ -3170,7 +3170,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.36.0" }, "funding": [ { @@ -3194,7 +3194,7 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", @@ -3254,7 +3254,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.36.0" }, "funding": [ { @@ -3278,7 +3278,7 @@ }, { "name": "symfony/polyfill-php81", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", @@ -3334,7 +3334,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.36.0" }, "funding": [ { @@ -3358,7 +3358,7 @@ }, { "name": "symfony/polyfill-php84", - "version": "v1.35.0", + "version": "v1.36.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php84.git", @@ -3414,7 +3414,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php84/tree/v1.35.0" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.36.0" }, "funding": [ { @@ -5850,12 +5850,12 @@ "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli.git", - "reference": "53134e3c93c9f0a8f2276f1a3f9c688ee5f3e45d" + "reference": "abcfe295c630e44ef7805371464b687225b57a42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/53134e3c93c9f0a8f2276f1a3f9c688ee5f3e45d", - "reference": "53134e3c93c9f0a8f2276f1a3f9c688ee5f3e45d", + "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/abcfe295c630e44ef7805371464b687225b57a42", + "reference": "abcfe295c630e44ef7805371464b687225b57a42", "shasum": "" }, "require": { @@ -5926,7 +5926,7 @@ "issues": "https://github.com/wp-cli/wp-cli/issues", "source": "https://github.com/wp-cli/wp-cli" }, - "time": "2026-04-15T08:17:00+00:00" + "time": "2026-04-17T07:15:32+00:00" }, { "name": "wp-cli/wp-cli-bundle", @@ -8562,11 +8562,11 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.47", + "version": "2.1.50", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/79015445d8bd79e62b29140f12e5bfced1dcca65", - "reference": "79015445d8bd79e62b29140f12e5bfced1dcca65", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d452086fb4cf648c6b2d8cf3b639351f79e4f3e2", + "reference": "d452086fb4cf648c6b2d8cf3b639351f79e4f3e2", "shasum": "" }, "require": { @@ -8611,7 +8611,7 @@ "type": "github" } ], - "time": "2026-04-13T15:49:08+00:00" + "time": "2026-04-17T13:10:32+00:00" }, { "name": "phpunit/php-code-coverage",